diff --git a/README.md b/README.md
index 6875b4f9..8f848c45 100644
--- a/README.md
+++ b/README.md
@@ -561,15 +561,17 @@
     ```jsx harmony
     
Hello!
     {
-      messages.length > 0 &&
-      
-        You have {messages.length} unread messages.
-      
+        messages.length > 0 && !isLogin?
+          
+              You have {messages.length} unread messages.
+          
+          :
+          
+              You don't have unread messages.
+          
     }
     ```
 
-    
-
 18. ### What are "key" props and what is the benefit of using them in arrays of elements?
 
     A `key` is a special string attribute you **should** include when creating arrays of elements. *Keys* help React identify which items have changed, are added, or are removed.