fix lint errors

This commit is contained in:
Jake Olney
2022-06-27 15:10:21 -04:00
committed by Melanie Wang
parent f3aa5fbd7c
commit 73f7467258
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -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
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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.