diff --git a/Liquid-for-Designers.md b/Liquid-for-Designers.md
index b18caab..fedbde8 100644
--- a/Liquid-for-Designers.md
+++ b/Liquid-for-Designers.md
@@ -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.
-```
+```
\ No newline at end of file