Clarify a not-null example. Fixes #247

Dylan Thacker-Smith
2014-03-20 19:58:12 -07:00
parent 001f4ed14e
commit d1bb11252d
+8 -16
@@ -120,6 +120,13 @@ optionally, `elsif` and `else`) clause:
{% endif %}
```
```
# Same as above
{% if user != null %}
Hello {{ user.name }}
{% endif %}
```
```liquid
{% if user.name == 'tobi' %}
Hello tobi
@@ -153,20 +160,6 @@ optionally, `elsif` and `else`) clause:
{% endunless %}
```
```liquid
# Check if the user has a credit card
{% if user.creditcard != null %}
poor sob
{% endif %}
```
```liquid
# Same as above
{% if user.creditcard %}
poor sob
{% endif %}
```
```liquid
# Check for the size of an array
{% if user.payments == empty %}
@@ -176,7 +169,6 @@ optionally, `elsif` and `else`) clause:
{% if user.payments.size > 0 %}
you paid !
{% endif %}
```
```liquid
@@ -379,4 +371,4 @@ the given variable instead of rendering it to the screen.
<option value="green">Green</option>
<option value="blue">Blue</option>
</select>
```
```