summary refs log tree commit diff
path: root/src/libstd/process.rs
diff options
context:
space:
mode:
authorLukas Pustina <lukas.pustina@centerdevice.com>2016-03-19 21:07:47 +0100
committerLukas Pustina <lukas.pustina@centerdevice.com>2016-03-19 21:07:47 +0100
commit45517947ba9a69260e5b3f4fe54a9aa21ed703eb (patch)
treecf445392455315efaf2068f3b4cc0e84e6fa1405 /src/libstd/process.rs
parentaefbbc79a3d0c082e19fe3368604dab91333f8a9 (diff)
downloadrust-45517947ba9a69260e5b3f4fe54a9aa21ed703eb.tar.gz
rust-45517947ba9a69260e5b3f4fe54a9aa21ed703eb.zip
Fixes 2. stdout to stderr in rustdoc
Diffstat (limited to 'src/libstd/process.rs')
-rw-r--r--src/libstd/process.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/process.rs b/src/libstd/process.rs
index b21f745764c..1b6993f1940 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -503,7 +503,7 @@ impl Child {
     /// 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
     ///