about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorYork Xiang <bombless@126.com>2015-01-15 01:11:28 +0800
committerYork Xiang <bombless@126.com>2015-01-15 01:11:28 +0800
commitbf899e997e8aa3bf806f7cf0cf2a5e714ff705cc (patch)
treebfc2f87ca6bdca3bb093b9a84db8c3d7f8d62965 /src
parent896cb36ecab3eaeb7f101087e030e43771eca5ca (diff)
downloadrust-bf899e997e8aa3bf806f7cf0cf2a5e714ff705cc.tar.gz
rust-bf899e997e8aa3bf806f7cf0cf2a5e714ff705cc.zip
fix wrong link
Diffstat (limited to 'src')
-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 c73fbefb2a4..d89e5af79c4 100644
--- a/src/doc/trpl/macros.md
+++ b/src/doc/trpl/macros.md
@@ -571,7 +571,7 @@ intermediate states out, and passing the flag `--pretty expanded` as a
 command-line argument to the compiler will show the result of expansion.
 
 If Rust's macro system can't do what you need, you may want to write a
-[compiler plugin](plugin.html) instead. Compared to `macro_rules!`
+[compiler plugin](plugins.html) instead. Compared to `macro_rules!`
 macros, this is significantly more work, the interfaces are much less stable,
 and the warnings about debugging apply ten-fold. In exchange you get the
 flexibility of running arbitrary Rust code within the compiler. Syntax