]> git.lizzy.rs Git - rust.git/commitdiff
Fix typo: intuitive -> unintuitive
authorNicholas Bishop <nicholasbishop@gmail.com>
Sun, 14 Dec 2014 18:38:46 +0000 (13:38 -0500)
committerNicholas Bishop <nicholasbishop@gmail.com>
Sun, 14 Dec 2014 18:38:46 +0000 (13:38 -0500)
src/doc/guide-macros.md

index 65b6014b496e86dfbf4985cd6fa360dea683c421..a7f4d103aca14b5d0ba30cc06612db26eadac092 100644 (file)
@@ -195,7 +195,7 @@ early_return!(input_2, [T::SpecialB]);
 As the above example demonstrates, `$(...)*` is also valid on the right-hand
 side of a macro definition. The behavior of `*` in transcription,
 especially in cases where multiple `*`s are nested, and multiple different
-names are involved, can seem somewhat magical and intuitive at first. The
+names are involved, can seem somewhat magical and unintuitive at first. The
 system that interprets them is called "Macro By Example". The two rules to
 keep in mind are (1) the behavior of `$(...)*` is to walk through one "layer"
 of repetitions for all of the `$name`s it contains in lockstep, and (2) each