about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--doc/tutorial-macros.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/tutorial-macros.md b/doc/tutorial-macros.md
index 1def470755c..af1f9ceb924 100644
--- a/doc/tutorial-macros.md
+++ b/doc/tutorial-macros.md
@@ -43,7 +43,7 @@ macro_rules! early_return(
             _ => {}
         }
     );
-);
+)
 // ...
 early_return!(input_1 special_a);
 // ...
@@ -160,7 +160,7 @@ macro_rules! early_return(
             _ => {}
         }
     );
-);
+)
 // ...
 early_return!(input_1, [special_a|special_c|special_d]);
 // ...