Skip to content

Commit ed5cc7e

Browse files
committed
Fix broken links in macros chapter (issue rust-lang#82)
1 parent 266d429 commit ed5cc7e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/macros.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ names, and invoked through a consistent syntax: `some_extension!(...)`.
66

77
Users of `rustc` can define new macros in two ways:
88

9-
* [Macros] define new syntax in a higher-level,
9+
* [Macros by Example] define new syntax in a higher-level,
1010
declarative way.
1111
* [Procedural Macros] can be used to implement custom derive.
1212

1313
And one unstable way: [compiler plugins].
1414

15-
[Macros]: ../book/macros.html
16-
[Procedural Macros]: ../book/procedural-macros.html
15+
[Macros by Example]: macros-by-example.html
16+
[Procedural Macros]: procedural-macros.html
1717
[compiler plugins]: ../unstable-book/language-features/plugin.html

0 commit comments

Comments
 (0)