From a96c0010fd64dfbe3105058d4d786c32b4e0957e Mon Sep 17 00:00:00 2001 From: lot224 Date: Tue, 20 Oct 2015 13:31:09 -0400 Subject: [PATCH] was: "elsif", changed to "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 956a711..bd9ec7c 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 -{% elsif user.name == 'bob' %} +{% elseif user.name == 'bob' %} Hello bob {% endif %} ```