about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-12-04 16:29:28 +0000
committerbors <bors@rust-lang.org>2017-12-04 16:29:28 +0000
commit226656ff72e3ecd3f715d1bbd4f3b25576a7bc61 (patch)
treee6f77b70291420b6eb7c60d63bf32e8ddef2990f
parent1a8282a9b4c7cfc120dd5d3a8ea29338ff0116d0 (diff)
parent3e46fa2c9a81b42caa2b14adf197b80dadc0ed81 (diff)
downloadrust-226656ff72e3ecd3f715d1bbd4f3b25576a7bc61.tar.gz
rust-226656ff72e3ecd3f715d1bbd4f3b25576a7bc61.zip
Auto merge of #46463 - nak3:fix-invalid-docs-path, r=kennytm
Fix invalid docs path for compiler plugins

The path to the docs `src/doc/guide-plugin.md` moved to
`src/doc/unstable-book/src/language-features/plugin.md`.

This patch updates it in the comment of WARNING message of the test
code.
-rw-r--r--src/test/run-pass-fulldeps/auxiliary/roman_numerals.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-pass-fulldeps/auxiliary/roman_numerals.rs b/src/test/run-pass-fulldeps/auxiliary/roman_numerals.rs
index 0c8af013fd1..26419a51513 100644
--- a/src/test/run-pass-fulldeps/auxiliary/roman_numerals.rs
+++ b/src/test/run-pass-fulldeps/auxiliary/roman_numerals.rs
@@ -29,8 +29,8 @@ use rustc_plugin::Registry;
 // WARNING WARNING WARNING WARNING WARNING
 // =======================================
 //
-// This code also appears in src/doc/guide-plugin.md. Please keep
-// the two copies in sync!  FIXME: have rustdoc read this file
+// This code also appears in src/doc/unstable-book/src/language-features/plugin.md.
+// Please keep the two copies in sync!  FIXME: have rustdoc read this file
 
 fn expand_rn(cx: &mut ExtCtxt, sp: Span, args: &[TokenTree])
         -> Box<MacResult + 'static> {