]> git.lizzy.rs Git - rust.git/commitdiff
Remove platform-specific terminology.
authorCorey Farwell <coreyf@rwell.org>
Fri, 22 Sep 2017 01:01:51 +0000 (21:01 -0400)
committerCorey Farwell <coreyf@rwell.org>
Fri, 22 Sep 2017 01:01:51 +0000 (21:01 -0400)
src/libstd/process.rs

index a70e632fe7cc4604d39ca55234910221f32698fd..33451a470d0130ac220f8f3e58a6133b461d552b 100644 (file)
@@ -549,8 +549,7 @@ pub fn current_dir<P: AsRef<Path>>(&mut self, dir: P) -> &mut 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 @@ pub fn stdin<T: Into<Stdio>>(&mut self, cfg: T) -> &mut 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 @@ pub fn stdout<T: Into<Stdio>>(&mut self, cfg: T) -> &mut 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
     ///