about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChris Denton <chris@chrisdenton.dev>2024-05-28 02:11:08 +0000
committerChris Denton <chris@chrisdenton.dev>2024-05-28 02:12:06 +0000
commitef9e6caabc822fccb038fe8cf61d719fae5ab111 (patch)
tree6267955b8a33fca3f95f522121cdf40ca911f0ef
parentb119e42b187a1f548ddb03bd6a90bc2cc820795e (diff)
downloadrust-ef9e6caabc822fccb038fe8cf61d719fae5ab111.tar.gz
rust-ef9e6caabc822fccb038fe8cf61d719fae5ab111.zip
Fix run-make-support doc errors
error: redundant explicit link target because label contains path that resolves to same destination
-rw-r--r--src/tools/run-make-support/src/lib.rs2
-rw-r--r--src/tools/run-make-support/src/rustc.rs2
-rw-r--r--src/tools/run-make-support/src/rustdoc.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/run-make-support/src/lib.rs b/src/tools/run-make-support/src/lib.rs
index d96c8b89127..38e4cfdb5e4 100644
--- a/src/tools/run-make-support/src/lib.rs
+++ b/src/tools/run-make-support/src/lib.rs
@@ -351,7 +351,7 @@ macro_rules! impl_common_helpers {
                 self
             }
 
-            /// Inspect what the underlying [`Command`][::std::process::Command] is up to the
+            /// Inspect what the underlying [`Command`] is up to the
             /// current construction.
             pub fn inspect<I>(&mut self, inspector: I) -> &mut Self
             where
diff --git a/src/tools/run-make-support/src/rustc.rs b/src/tools/run-make-support/src/rustc.rs
index 1c83b630861..b424ae3f421 100644
--- a/src/tools/run-make-support/src/rustc.rs
+++ b/src/tools/run-make-support/src/rustc.rs
@@ -203,7 +203,7 @@ impl Rustc {
         self
     }
 
-    /// Get the [`Output`][::std::process::Output] of the finished process.
+    /// Get the [`Output`] of the finished process.
     #[track_caller]
     pub fn command_output(&mut self) -> ::std::process::Output {
         // let's make sure we piped all the input and outputs
diff --git a/src/tools/run-make-support/src/rustdoc.rs b/src/tools/run-make-support/src/rustdoc.rs
index 9c77f1ca462..61d7448a6bf 100644
--- a/src/tools/run-make-support/src/rustdoc.rs
+++ b/src/tools/run-make-support/src/rustdoc.rs
@@ -94,7 +94,7 @@ impl Rustdoc {
         self
     }
 
-    /// Get the [`Output`][::std::process::Output] of the finished process.
+    /// Get the [`Output`] of the finished process.
     #[track_caller]
     pub fn command_output(&mut self) -> ::std::process::Output {
         // let's make sure we piped all the input and outputs