From dc03ce2b5a849813633c3dec4175f5be7b25aff1 Mon Sep 17 00:00:00 2001 From: lot224 Date: Tue, 20 Oct 2015 13:33:11 -0400 Subject: [PATCH] Reverted change back, my appoligies, it is elsif not elseif --- 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 bd9ec7c..956a711 100644 --- a/Liquid-for-Designers.md +++ b/Liquid-for-Designers.md @@ -134,7 +134,7 @@ optionally, `elsif` and `else`) clause: ```liquid {% if user.name == 'tobi' %} Hello tobi -{% elseif user.name == 'bob' %} +{% elsif user.name == 'bob' %} Hello bob {% endif %} ```