about summary refs log tree commit diff
path: root/src/doc/reference
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2017-02-20 23:11:15 -0500
committerSteve Klabnik <steve@steveklabnik.com>2017-02-21 14:01:38 -0500
commita486dcbd979d6ed7b95bc8b8f06f70d9973895ab (patch)
treeec3f6c3fad04a4e742663a5311b961d51a2941e1 /src/doc/reference
parent49cea270d1dc79f6e08b0649d2ed8a2c87410c06 (diff)
downloadrust-a486dcbd979d6ed7b95bc8b8f06f70d9973895ab.tar.gz
rust-a486dcbd979d6ed7b95bc8b8f06f70d9973895ab.zip
Macros
Diffstat (limited to 'src/doc/reference')
-rw-r--r--src/doc/reference/src/macros.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/doc/reference/src/macros.md b/src/doc/reference/src/macros.md
index 93cf83dbd5a..9ec5f2d6945 100644
--- a/src/doc/reference/src/macros.md
+++ b/src/doc/reference/src/macros.md
@@ -6,8 +6,12 @@ names, and invoked through a consistent syntax: `some_extension!(...)`.
 
 Users of `rustc` can define new macros in two ways:
 
-* [Macros](book/macros.html) define new syntax in a higher-level,
+* [Macros] define new syntax in a higher-level,
   declarative way.
-* [Procedural Macros][procedural macros] can be used to implement custom derive.
+* [Procedural Macros] can be used to implement custom derive.
 
-And one unstable way: [compiler plugins][plugin].
+And one unstable way: [compiler plugins].
+
+[Macros]: ../book/macros.html
+[Procedural Macros]: ../book/procedural-macros.html
+[compiler plugins]: ../book/compiler-plugins.html