]> git.lizzy.rs Git - rust.git/commitdiff
Procedural macros
authorCorey Farwell <coreyf@rwell.org>
Tue, 21 Feb 2017 04:15:56 +0000 (23:15 -0500)
committerSteve Klabnik <steve@steveklabnik.com>
Tue, 21 Feb 2017 19:01:42 +0000 (14:01 -0500)
src/doc/reference/src/procedural-macros.md

index b04da6176eff222c4fe80944c96ba5aead84b895..b1fd35653d9e709872898c7bffdfd08ddcb41418 100644 (file)
@@ -4,6 +4,8 @@
 thing they can be used for is to implement derive on your own types. See
 [the book][procedural macros] for a tutorial.
 
+[procedural macros]: ../book/procedural-macros.html
+
 Procedural macros involve a few different parts of the language and its
 standard libraries. First is the `proc_macro` crate, included with Rust,
 that defines an interface for building a procedural macro. The