From 6e7cf87101e79efb8eed683ab5261878b63c3070 Mon Sep 17 00:00:00 2001 From: Franklin Chen Date: Fri, 28 Dec 2012 06:09:13 -0500 Subject: [PATCH] Remove spurious semicolons at the end of macro_rules! definitions. --- doc/tutorial-macros.md | 4 ++-- 1 file 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]); // ...