@@ -9,7 +9,7 @@ pub macro my_macro() {
99
1010} 
1111
12- // @has decl_macro/macro.my_macro_2.html //pre 'pub macro my_macro_2($ ($  tok : tt) *) {' 
12+ // @has decl_macro/macro.my_macro_2.html //pre 'pub macro my_macro_2($($ tok : tt) *) {' 
1313// @has - //pre '...' 
1414// @has - //pre '}' 
1515pub  macro my_macro_2 ( $( $tok: tt) * )  { 
@@ -18,8 +18,8 @@ pub macro my_macro_2($($tok:tt)*) {
1818
1919// @has decl_macro/macro.my_macro_multi.html //pre 'pub macro my_macro_multi {' 
2020// @has - //pre '(_) => { ... },' 
21- // @has - //pre '($  foo : ident.$  bar : expr) => { ... },' 
22- // @has - //pre '($ ($  foo : literal), +) => { ... },' 
21+ // @has - //pre '($foo : ident.$bar : expr) => { ... },' 
22+ // @has - //pre '($($ foo : literal), +) => { ... },' 
2323// @has - //pre '}' 
2424pub macro my_macro_multi { 
2525    ( _)  => { 
@@ -33,7 +33,7 @@ pub macro my_macro_multi {
3333    } 
3434} 
3535
36- // @has decl_macro/macro.by_example_single.html //pre 'pub macro by_example_single($  foo : expr) {' 
36+ // @has decl_macro/macro.by_example_single.html //pre 'pub macro by_example_single($foo : expr) {' 
3737// @has - //pre '...' 
3838// @has - //pre '}' 
3939pub  macro by_example_single { 
@@ -42,12 +42,12 @@ pub macro by_example_single {
4242
4343mod  a  { 
4444    mod b { 
45-         // @has decl_macro/a/b/macro.by_example_vis.html //pre 'pub(super) macro by_example_vis($  foo : expr) {' 
45+         // @has decl_macro/a/b/macro.by_example_vis.html //pre 'pub(super) macro by_example_vis($foo : expr) {' 
4646        pub( in super)  macro by_example_vis { 
4747            ( $foo: expr)  => { } 
4848        } 
4949        mod  c { 
50-             // @has decl_macro/a/b/c/macro.by_example_vis_named.html //pre 'pub(in a) macro by_example_vis_named($  foo : expr) {' 
50+             // @has decl_macro/a/b/c/macro.by_example_vis_named.html //pre 'pub(in a) macro by_example_vis_named($foo : expr) {' 
5151            pub ( in  a)  macro by_example_vis_named { 
5252                ( $foo: expr)  => { } 
5353            } 
0 commit comments