about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2017-12-03 17:43:49 -0500
committerGitHub <noreply@github.com>2017-12-03 17:43:49 -0500
commit909a8de9530c5ade8d1b5ec0298e4075e6a672cd (patch)
treea4a3754c7c7398657403927619f2cb8280129576
parent94dbbacd45702d32c67c0d3be8d4874eadf300c8 (diff)
parentcac199fb27a66147f1883bb54028cc9b2d0db28b (diff)
downloadrust-909a8de9530c5ade8d1b5ec0298e4075e6a672cd.tar.gz
rust-909a8de9530c5ade8d1b5ec0298e4075e6a672cd.zip
Rollup merge of #46465 - nak3:fix-invalid-link, r=kennytm
Fix invalid link to lint_plugin_test.rs

The path to `lint_plugin_test.rs` was moved to `src/test/ui-fulldeps/`
from `src/test/run-pass-fulldeps/` in https://github.com/rust-lang/rust/commit/38ef85696dce84d5e6aff171cbf91d396678cbe0

This patch updates it in the docs.
-rw-r--r--src/doc/unstable-book/src/language-features/plugin.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/unstable-book/src/language-features/plugin.md b/src/doc/unstable-book/src/language-features/plugin.md
index 4b8603e3c44..1cece930eea 100644
--- a/src/doc/unstable-book/src/language-features/plugin.md
+++ b/src/doc/unstable-book/src/language-features/plugin.md
@@ -177,7 +177,7 @@ quasiquote as an ordinary plugin library.
 Plugins can extend [Rust's lint
 infrastructure](../reference/attributes.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/run-pass-fulldeps/auxiliary/lint_plugin_test.rs)
+[`lint_plugin_test.rs`](https://github.com/rust-lang/rust/blob/master/src/test/ui-fulldeps/auxiliary/lint_plugin_test.rs)
 that warns about any item named `lintme`.
 
 ```rust,ignore