From f4407fe65121a269a569c9105f805dd66a0c7a26 Mon Sep 17 00:00:00 2001 From: Adam Hollett Date: Fri, 18 Mar 2016 22:42:41 -0400 Subject: [PATCH] Fix truthy example --- basics/truthy-and-falsy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basics/truthy-and-falsy.md b/basics/truthy-and-falsy.md index 63a5ca8e..703a0ae6 100644 --- a/basics/truthy-and-falsy.md +++ b/basics/truthy-and-falsy.md @@ -18,7 +18,7 @@ In the example below, the string "Tobi" is not a boolean, but it is truthy in a {% raw %} {% assign tobi = "Tobi" %} -{% if tobi == true %} +{% if tobi %} This condition will always be true. {% endif %} {% endraw %}