about summary refs log tree commit diff
path: root/src/test/rustdoc/intra-doc/proc-macro.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-04-17 20:41:37 +0000
committerbors <bors@rust-lang.org>2021-04-17 20:41:37 +0000
commit392ba2ba1a7d6c542d2459fb8133bebf62a4a423 (patch)
tree4b21d63dfc13864287cf392c901a998ecb33a386 /src/test/rustdoc/intra-doc/proc-macro.rs
parentbd9949b8e6577631f8e2757a4a007098e6a88b7d (diff)
parenta3277e2a0a2ccd165f5ea7dd485828051d31e030 (diff)
downloadrust-392ba2ba1a7d6c542d2459fb8133bebf62a4a423.tar.gz
rust-392ba2ba1a7d6c542d2459fb8133bebf62a4a423.zip
Auto merge of #84279 - Dylan-DPC:rollup-k7otd7e, r=Dylan-DPC
Rollup of 4 pull requests

Successful merges:

 - #83237 (rustdoc: use more precise relative URLs)
 - #84150 (rustdoc: move some search code into search.js)
 - #84203 (rustdoc: Give a more accurate span for anchor failures)
 - #84257 (Add documentation to help people find `Ipv4Addr::UNSPECIFIED`)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'src/test/rustdoc/intra-doc/proc-macro.rs')
-rw-r--r--src/test/rustdoc/intra-doc/proc-macro.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/rustdoc/intra-doc/proc-macro.rs b/src/test/rustdoc/intra-doc/proc-macro.rs
index ab4626ccfc3..fce10a130be 100644
--- a/src/test/rustdoc/intra-doc/proc-macro.rs
+++ b/src/test/rustdoc/intra-doc/proc-macro.rs
@@ -9,17 +9,17 @@ pub use proc_macro_macro::{DeriveA, attr_a};
 use proc_macro_macro::{DeriveB, attr_b};
 
 // @has proc_macro/struct.Foo.html
-// @has - '//a/@href' '../proc_macro/derive.DeriveA.html'
-// @has - '//a/@href' '../proc_macro/attr.attr_a.html'
-// @has - '//a/@href' '../proc_macro/trait.DeriveTrait.html'
+// @has - '//a/@href' 'derive.DeriveA.html'
+// @has - '//a/@href' 'attr.attr_a.html'
+// @has - '//a/@href' 'trait.DeriveTrait.html'
 // @has - '//a/@href' '../proc_macro_macro/derive.DeriveB.html'
 // @has - '//a/@href' '../proc_macro_macro/attr.attr_b.html'
 /// Link to [DeriveA], [attr_a], [DeriveB], [attr_b], [DeriveTrait]
 pub struct Foo;
 
 // @has proc_macro/struct.Bar.html
-// @has - '//a/@href' '../proc_macro/derive.DeriveA.html'
-// @has - '//a/@href' '../proc_macro/attr.attr_a.html'
+// @has - '//a/@href' 'derive.DeriveA.html'
+// @has - '//a/@href' 'attr.attr_a.html'
 /// Link to [deriveA](derive@DeriveA) [attr](macro@attr_a)
 pub struct Bar;