File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 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.
173173- ` macro_use ` on an ` extern crate ` — load macros from this crate. An optional
174174 list of names ` #[macro_use(foo, bar)] ` restricts the import to just those
175175 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.
178177
179178- ` macro_reexport ` on an ` extern crate ` — re-export the named macros.
180179
@@ -183,10 +182,6 @@ which can be used to control type layout.
183182- ` no_link ` on an ` extern crate ` — even if we load this crate for macros, don't
184183 link it into the output.
185184
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-
190185- ` proc_macro ` - Defines a [ function-like macro] .
191186
192187- ` proc_macro_derive ` - Defines a [ derive mode macro] .
You can’t perform that action at this time.
0 commit comments