From 26813e6ebf61556242cc25badafdf352df8c2758 Mon Sep 17 00:00:00 2001 From: Ross Allen Date: Wed, 6 Nov 2013 20:11:10 -0800 Subject: [PATCH] Add space to hash example for prettiness --- Liquid-for-Designers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Liquid-for-Designers.md b/Liquid-for-Designers.md index c8d12b1..a082ef1 100644 --- a/Liquid-for-Designers.md +++ b/Liquid-for-Designers.md @@ -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 %} ```