]> git.lizzy.rs Git - rust.git/commitdiff
Fixes 2. stdout to stderr in rustdoc
authorLukas Pustina <lukas.pustina@centerdevice.com>
Sat, 19 Mar 2016 20:07:47 +0000 (21:07 +0100)
committerLukas Pustina <lukas.pustina@centerdevice.com>
Sat, 19 Mar 2016 20:07:47 +0000 (21:07 +0100)
src/libstd/process.rs

index b21f745764c4f5f40fa38c4781999511ab2b2940..1b6993f194022631cb1277b560a31ddce24b32ae 100644 (file)
@@ -503,7 +503,7 @@ pub fn wait(&mut self) -> io::Result<ExitStatus> {
     /// By default, stdin, stdout and stderr are inherited from the parent.
     /// In order to capture the output into this `Result<Output>` it is
     /// necessary to create new pipes between parent and child. Use
-    /// `stdout(Stdio::piped())` or `stdout(Stdio::piped())`, respectively.
+    /// `stdout(Stdio::piped())` or `stderr(Stdio::piped())`, respectively.
     ///
     /// # Examples
     ///