about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Stocko <as@coder.gg>2016-06-19 16:11:43 -0400
committerAlexander Stocko <as@coder.gg>2016-06-19 16:11:43 -0400
commite79b672a88e297d840fc8432fc2558804074ea46 (patch)
treee94aee5ee96f56c4bed7bb7ff535d6000ecf62de
parentd06f1dcd7d3b9d9d5e0dc32ea7207a07e3408200 (diff)
downloadrust-e79b672a88e297d840fc8432fc2558804074ea46.tar.gz
rust-e79b672a88e297d840fc8432fc2558804074ea46.zip
Fixed links in book/compiler-plugins.md
-rw-r--r--src/doc/book/compiler-plugins.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/doc/book/compiler-plugins.md b/src/doc/book/compiler-plugins.md
index 2d0cc61fb11..5b75ad6cfa8 100644
--- a/src/doc/book/compiler-plugins.md
+++ b/src/doc/book/compiler-plugins.md
@@ -34,7 +34,7 @@ code that manipulates syntax trees at
 compile time.
 
 Let's write a plugin
-[`roman_numerals.rs`](https://github.com/rust-lang/rust/tree/master/src/test/auxiliary/roman_numerals.rs)
+[`roman_numerals.rs`](https://github.com/rust-lang/rust/blob/master/src/test/run-pass-fulldeps/auxiliary/roman_numerals.rs)
 that implements Roman numeral integer literals.
 
 ```rust,ignore
@@ -166,7 +166,8 @@ quasiquote as an ordinary plugin library.
 
 Plugins can extend [Rust's lint
 infrastructure](../reference.html#lint-check-attributes) with additional checks for
-code style, safety, etc. Now let's write a plugin [`lint_plugin_test.rs`](https://github.com/rust-lang/rust/blob/master/src/test/auxiliary/lint_plugin_test.rs)
+code style, safety, etc. Now let's write a plugin
+[`lint_plugin_test.rs`](https://github.com/rust-lang/rust/blob/master/src/test/run-pass-fulldeps/auxiliary/lint_plugin_test.rs)
 that warns about any item named `lintme`.
 
 ```rust,ignore