From 65542f9e4f98d215262eb504b26f68a855c12134 Mon Sep 17 00:00:00 2001 From: Jake Olney Date: Tue, 7 Jun 2022 11:29:42 -0700 Subject: [PATCH] small change for for syntax keyword --- lib/liquid/tags/for.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/liquid/tags/for.rb b/lib/liquid/tags/for.rb index 1c7a1acf..ff8c7fc9 100644 --- a/lib/liquid/tags/for.rb +++ b/lib/liquid/tags/for.rb @@ -19,7 +19,7 @@ module Liquid # {% endfor %} # @liquid_syntax_keyword variable The current item in the array. # @liquid_syntax_keyword array The array to iterate over. - # @liquid_syntax_keyword expression The expression to render. + # @liquid_syntax_keyword expression The expression to render for each iteration. # @liquid_optional_param limit [number] The number of iterations to perform. # @liquid_optional_param offset [number] The 1-based index to start iterating at. # @liquid_optional_param range [untyped] A custom numeric range to iterate over.