From 2f36b753cd6e8127486293d387636b0a4ac659aa Mon Sep 17 00:00:00 2001 From: Viktor Jarnheimer Date: Wed, 20 Sep 2017 10:05:17 +0200 Subject: [PATCH] Revert 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 1271199..d5c4997 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 -{% elseif user.name == 'bob' %} +{% elsif user.name == 'bob' %} Hello bob {% endif %} ```