From 73f74672585602875a0d8be2f9b14043a38fd96e Mon Sep 17 00:00:00 2001 From: Jake Olney Date: Wed, 18 May 2022 11:52:17 -0700 Subject: [PATCH] fix lint errors --- lib/liquid/tablerowloop_drop.rb | 4 ++-- lib/liquid/tags/if.rb | 2 +- lib/liquid/tags/unless.rb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/liquid/tablerowloop_drop.rb b/lib/liquid/tablerowloop_drop.rb index 491562bc..6e058e03 100644 --- a/lib/liquid/tablerowloop_drop.rb +++ b/lib/liquid/tablerowloop_drop.rb @@ -21,14 +21,14 @@ module Liquid # The number of iterations. # @liquid_return [number] attr_reader :length - + # @liquid_public_docs # @liquid_name tablerow.col # @liquid_summary # The 1-based index of the current column. # @liquid_return [number] attr_reader :col - + # @liquid_public_docs # @liquid_name tablerow.row # @liquid_summary diff --git a/lib/liquid/tags/if.rb b/lib/liquid/tags/if.rb index 7ef6a886..d15173f8 100644 --- a/lib/liquid/tags/if.rb +++ b/lib/liquid/tags/if.rb @@ -6,7 +6,7 @@ module Liquid # @liquid_category conditional # @liquid_name if # @liquid_summary - # Renders an expression if a specific condition is `true`. + # Renders an expression if a specific condition is `true`. # @liquid_syntax # {% if condition %} # expression diff --git a/lib/liquid/tags/unless.rb b/lib/liquid/tags/unless.rb index 722d6c52..fd0d1ea7 100644 --- a/lib/liquid/tags/unless.rb +++ b/lib/liquid/tags/unless.rb @@ -8,7 +8,7 @@ module Liquid # @liquid_category conditional # @liquid_name unless # @liquid_summary - # Renders an expression unless a specific condition is `true`. + # Renders an expression unless a specific condition is `true`. # @liquid_description # > Tip: # > Similar to the [`if` tag](/api/liquid/tags#if), you can use `elsif` to add more conditions to an `unless` tag.