Skip to content

Commit

Permalink
Fix run-make-support doc errors
Browse files Browse the repository at this point in the history
error: redundant explicit link target because label contains path that resolves to same destination
  • Loading branch information
ChrisDenton committed May 28, 2024
1 parent b119e42 commit ef9e6ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/tools/run-make-support/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/tools/run-make-support/src/rustc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/tools/run-make-support/src/rustdoc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ef9e6ca

Please sign in to comment.