Update iteration.md

Fix liquid syntax error

Liquid Warning: Liquid syntax error (line 111): Unexpected character   in "i in (3..5) " in tags/iteration.md
This commit is contained in:
Kevin Wojniak
2016-10-26 14:16:17 -07:00
committed by GitHub
parent 16f0580d33
commit 295bdf3fa8

View File

@@ -112,11 +112,11 @@ Defines a range of numbers to loop through. The range can be defined by both lit
<p class="code-label">Input</p>
```liquid
{% raw %}
{% for i in (3..5) %}
{{ i }}
{% endfor %}
{% raw %}
{% assign num = 4 %}
{% for i in (1..num) %}
{{ i }}