From 28cf16a30409463cbac3b7bb660be90dcecab06a Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Tue, 9 Oct 2012 15:33:24 -0700 Subject: [PATCH] Fix tutorial breakage. --- doc/tutorial-macros.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/doc/tutorial-macros.md b/doc/tutorial-macros.md index 31f260076f00..995944b2fbd8 100644 --- a/doc/tutorial-macros.md +++ b/doc/tutorial-macros.md @@ -44,12 +44,7 @@ macro_rules! early_return( } ); ); -~~~~ - -Now, we can replace each `match` with an invocation of the `early_return` -macro: - -~~~~ +// ... early_return!(input_1 special_a); // ... early_return!(input_2 special_b);