about summary refs log tree commit diff
path: root/src/doc/trpl
diff options
context:
space:
mode:
authorOliver Schneider <github6541940@oli-obk.de>2015-04-29 11:41:00 +0200
committerOliver Schneider <github6541940@oli-obk.de>2015-04-29 11:41:00 +0200
commitd6043d1e714de5bd879851990977d1dfb371e40d (patch)
treea147069095462aa3cb668367b372df0119a8cfb4 /src/doc/trpl
parent26c7635ccf12c66929d51a6d441c3a7672cddec4 (diff)
downloadrust-d6043d1e714de5bd879851990977d1dfb371e40d.tar.gz
rust-d6043d1e714de5bd879851990977d1dfb371e40d.zip
fix broken link
compiler plugins are hosted unter "compiler-plugins.html" not "plugins.html"
Diffstat (limited to 'src/doc/trpl')
-rw-r--r--src/doc/trpl/macros.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/macros.md b/src/doc/trpl/macros.md
index 9d01f104dda..d504fab206d 100644
--- a/src/doc/trpl/macros.md
+++ b/src/doc/trpl/macros.md
@@ -765,7 +765,7 @@ as `unimplemented!` until you’re ready to write them.
 # Procedural macros
 
 If Rust’s macro system can’t do what you need, you may want to write a
-[compiler plugin](plugins.html) instead. Compared to `macro_rules!`
+[compiler plugin](compiler-plugins.html) instead. Compared to `macro_rules!`
 macros, this is significantly more work, the interfaces are much less stable,
 and bugs can be much harder to track down. In exchange you get the
 flexibility of running arbitrary Rust code within the compiler. Syntax