]> git.lizzy.rs Git - rust.git/blobdiff - src/doc/trpl/macros.md
TRPL: Add `rust` Marker to Some Code Block
[rust.git] / src / doc / trpl / macros.md
index 9d01f104ddaafcdcb824ccf4241189c743667c58..ce06987013d3ccd22913a30b736a5e4d95b3e250 100644 (file)
@@ -698,6 +698,7 @@ assert_eq!(5, 3 + 2);
 assert!(5 < 3);
 assert_eq!(5, 3);
 ```
+
 ## try!
 
 `try!` is used for error handling. It takes something that can return a
@@ -765,7 +766,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