about summary refs log tree commit diff
path: root/src/doc/reference.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/reference.md')
-rw-r--r--src/doc/reference.md11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index 89f74d8d87a..e6afa695b2c 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -3066,12 +3066,15 @@ block will execute, otherwise flow proceeds to the first `else` block that follo
 
 ```
 let dish = ("Ham", "Eggs");
-if let ("Bacon", b) = dish { // will not execute because let is refuted
-  println!("Bacon is served with {}", b);
+
+// this body will be skipped because the pattern is refuted
+if let ("Bacon", b) = dish {
+    println!("Bacon is served with {}", b);
 }
 
-if let ("Ham", b) = dish { // will execute
-  println!("Ham is served with {}", b);
+// this body will execute
+if let ("Ham", b) = dish {
+    println!("Ham is served with {}", b);
 }
 ```