diff --git a/src/libstd/process.rs b/src/libstd/process.rs index a70e632fe7cc4..33451a470d013 100644 --- a/src/libstd/process.rs +++ b/src/libstd/process.rs @@ -549,8 +549,7 @@ impl Command { self } - /// Configuration for the child process's standard input (stdin) handle - /// (file descriptor 0). + /// Configuration for the child process's standard input (stdin) handle. /// /// # Examples /// @@ -570,8 +569,7 @@ impl Command { self } - /// Configuration for the child process's standard output (stdout) handle - /// (file descriptor 1). + /// Configuration for the child process's standard output (stdout) handle. /// /// # Examples /// @@ -591,8 +589,7 @@ impl Command { self } - /// Configuration for the child process's standard error (stderr) handle - /// (file descriptor 2). + /// Configuration for the child process's standard error (stderr) handle. /// /// # Examples ///