From ca45b450df3262025ffd9b24891a377de858d45d Mon Sep 17 00:00:00 2001 From: Viktor Jarnheimer Date: Wed, 20 Sep 2017 09:41:25 +0200 Subject: [PATCH] Typo --- 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 d5c4997..1271199 100644 --- a/Liquid-for-Designers.md +++ b/Liquid-for-Designers.md @@ -203,7 +203,7 @@ Liquid expressions are tested for "truthiness" in what looks like a Ruby-like wa ```liquid {% if user.name == 'tobi' %} Hello tobi -{% elsif user.name == 'bob' %} +{% elseif user.name == 'bob' %} Hello bob {% endif %} ```