about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJakub Beránek <berykubik@gmail.com>2024-07-24 18:06:52 +0200
committerJakub Beránek <berykubik@gmail.com>2024-07-26 09:17:34 +0200
commit603c0afc999bf5be5b310e49f39e3d2dcdf98cac (patch)
treeaf59d6faad0f615fa5afefb9c5ca840e722b0735
parent29565e24e17826d34b0c515bc0cc32758a8ff937 (diff)
downloadrust-603c0afc999bf5be5b310e49f39e3d2dcdf98cac.tar.gz
rust-603c0afc999bf5be5b310e49f39e3d2dcdf98cac.zip
Fix broken doc link
-rw-r--r--src/bootstrap/src/utils/exec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/src/utils/exec.rs b/src/bootstrap/src/utils/exec.rs
index d4ae8e26aaa..3b04459db06 100644
--- a/src/bootstrap/src/utils/exec.rs
+++ b/src/bootstrap/src/utils/exec.rs
@@ -50,7 +50,7 @@ impl OutputMode {
 /// If you want to delay failures until the end of bootstrap, use [delay_failure].
 ///
 /// By default, the command will print its stdout/stderr to stdout/stderr of bootstrap ([OutputMode::Print]).
-/// If you want to handle the output programmatically, use [BootstrapCommand::capture].
+/// If you want to handle the output programmatically, use [BootstrapCommand::run_capture].
 ///
 /// Bootstrap will print a debug log to stdout if the command fails and failure is not allowed.
 ///