diff --git a/tokio/src/process/mod.rs b/tokio/src/process/mod.rs index fc661d89c..585dbdd6a 100644 --- a/tokio/src/process/mod.rs +++ b/tokio/src/process/mod.rs @@ -544,11 +544,9 @@ impl Command { /// Sets configuration for the child process's standard input (stdin) handle. /// - /// Defaults to [`inherit`] when used with `spawn` or `status`, and - /// defaults to [`piped`] when used with `output`. + /// Defaults to [`inherit`]. /// /// [`inherit`]: std::process::Stdio::inherit - /// [`piped`]: std::process::Stdio::piped /// /// # Examples ///