From 295bdf3fa8d2228c4c6fd8810aea4e204eb81477 Mon Sep 17 00:00:00 2001 From: Kevin Wojniak Date: Wed, 26 Oct 2016 14:16:17 -0700 Subject: [PATCH] Update iteration.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix liquid syntax error Liquid Warning: Liquid syntax error (line 111): Unexpected character   in "i in (3..5) " in tags/iteration.md --- tags/iteration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tags/iteration.md b/tags/iteration.md index 65bf971..c8ecc4a 100644 --- a/tags/iteration.md +++ b/tags/iteration.md @@ -112,11 +112,11 @@ Defines a range of numbers to loop through. The range can be defined by both lit

Input

```liquid +{% raw %} {% for i in (3..5) %} {{ i }} {% endfor %} -{% raw %} {% assign num = 4 %} {% for i in (1..num) %} {{ i }}