From 49a41a3f0870f7ca1fb1119eef1a90127538f342 Mon Sep 17 00:00:00 2001 From: Mark Crossfield Date: Sun, 8 Jan 2017 12:38:02 +0000 Subject: [PATCH] =?UTF-8?q?Clarifies=20spelling=20of=20for=E2=80=99s=20rev?= =?UTF-8?q?ersed=20flag=20to=20address=20#843?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It should now be harder to read the docs and miss the extra letter required for reversed compared to reverse, which causes a fairly generic syntax warning when trying to reverse sort a collection in a for loop. --- tags/iteration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tags/iteration.md b/tags/iteration.md index e411a725..ae033b4a 100644 --- a/tags/iteration.md +++ b/tags/iteration.md @@ -133,7 +133,7 @@ Defines a range of numbers to loop through. The range can be defined by both lit ### reversed -Reverses the order of the loop. +Reverses the order of the loop. Note that the flag’s spelling is different to the filter `reverse`.

Input

```liquid