add else if and else to readme
diff --git a/README.md b/README.md
index e8c61ca..9e2dffa 100644
--- a/README.md
+++ b/README.md
@@ -164,13 +164,13 @@
 Conditions support the typical if, else if and else statements. Following conditions are for example possible:
 ```c++
 // Standard comparisons with variable
-render("{% if time.hour >= 18 %}…{% endif %}", data); // True
+render("{% if time.hour >= 20 %}…{% else if time.hour >= 18 %}…{% endif %}", data); // True
 
 // Variable in list
 render("{% if neighbour in guests %}…{% endif %}", data); // True
 
 // Logical operations
-render("{% if guest_count < 5 and all_tired %}…{% endif %}", data); // True
+render("{% if guest_count < 5 and all_tired %}…{% else %}…{% endif %}", data); // True
 
 // Negations
 render("{% if not guest_count %}…{% endif %}", data); // True