Skip to content

Commit 60077ef

Browse files
committed
remove two links to the first edition
1 parent daaa103 commit 60077ef

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/attributes.md

+1-6
Original file line numberDiff line numberDiff 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].

0 commit comments

Comments
 (0)