about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-01-15 14:11:55 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-01-15 14:11:55 -0800
commit8c81800170f9ee9b52c6e10b93d111bb1291b6d4 (patch)
tree36cac0638647f97af6ef33b48ffac549d79b1f11
parent9b7bc456ea7068fe6d24de995e083c3ea1e1ddaa (diff)
parentbf899e997e8aa3bf806f7cf0cf2a5e714ff705cc (diff)
downloadrust-8c81800170f9ee9b52c6e10b93d111bb1291b6d4.tar.gz
rust-8c81800170f9ee9b52c6e10b93d111bb1291b6d4.zip
rollup merge of #21148: bombless/patch-1
-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 0bc49365921..8f4db3eee5a 100644
--- a/src/doc/trpl/macros.md
+++ b/src/doc/trpl/macros.md
@@ -580,7 +580,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