Add space to hash example for prettiness

Ross Allen
2013-11-06 20:11:10 -08:00
parent 63b1e8b89e
commit 26813e6ebf
+1 -1
@@ -282,7 +282,7 @@ When iterating a hash, `item[0]` contains the key, and `item[1]` contains the va
```liquid
{% for item in hash %}
{{ item[0] }}: {{item[1] }}
{{ item[0] }}: {{ item[1] }}
{% endfor %}
```