From cac199fb27a66147f1883bb54028cc9b2d0db28b Mon Sep 17 00:00:00 2001 From: Kenjiro Nakayama Date: Sun, 3 Dec 2017 18:13:54 +0900 Subject: [PATCH] Fix invalid link to lint_plugin_test.rs --- src/doc/unstable-book/src/language-features/plugin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/unstable-book/src/language-features/plugin.md b/src/doc/unstable-book/src/language-features/plugin.md index 4b8603e3c4450..1cece930eeaa5 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