Fix truthy example

This commit is contained in:
Adam Hollett
2016-03-18 22:42:41 -04:00
parent 8c6f4c2f92
commit f4407fe651
+1 -1
View File
@@ -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 %}