File tree 1 file changed +1
-6
lines changed
1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -173,8 +173,7 @@ which can be used to control type layout.
173
173
- ` macro_use ` on an ` extern crate ` — load macros from this crate. An optional
174
174
list of names ` #[macro_use(foo, bar)] ` restricts the import to just those
175
175
macros named. The ` extern crate ` must appear at the crate root, not inside
176
- ` mod ` , which ensures proper function of the [ ` $crate ` macro
177
- variable] ( ../book/first-edition/macros.html#the-variable-crate ) .
176
+ ` mod ` , which ensures proper function of the ` $crate ` macro variable.
178
177
179
178
- ` macro_reexport ` on an ` extern crate ` — re-export the named macros.
180
179
@@ -183,10 +182,6 @@ which can be used to control type layout.
183
182
- ` no_link ` on an ` extern crate ` — even if we load this crate for macros, don't
184
183
link it into the output.
185
184
186
- See the [ macros section of the first edition of the
187
- book] ( ../book/first-edition/macros.html#scoping-and-macro-importexport ) for more
188
- information on ` macro_rules ` macro scope.
189
-
190
185
- ` proc_macro ` - Defines a [ function-like macro] .
191
186
192
187
- ` proc_macro_derive ` - Defines a [ derive mode macro] .
You can’t perform that action at this time.
0 commit comments