From d6043d1e714de5bd879851990977d1dfb371e40d Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Wed, 29 Apr 2015 11:41:00 +0200 Subject: [PATCH] fix broken link compiler plugins are hosted unter "compiler-plugins.html" not "plugins.html" --- src/doc/trpl/macros.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/macros.md b/src/doc/trpl/macros.md index 9d01f104ddaa..d504fab206dd 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