about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-04-09 15:30:20 +0000
committerbors <bors@rust-lang.org>2017-04-09 15:30:20 +0000
commitfa332c901575da70ac7a612609a26b752b1adc65 (patch)
tree5e012f51e29ed79e984ed1d15f6c59e1f0d5d8d5
parent2c48ae6f7ffae392d85c86240c67f49df01f44fd (diff)
parentc7f2dbef90231eab0b0f2032854823d192a964eb (diff)
downloadrust-fa332c901575da70ac7a612609a26b752b1adc65.tar.gz
rust-fa332c901575da70ac7a612609a26b752b1adc65.zip
Auto merge of #40829 - mgattozzi:ChildStderr, r=steveklabnik
Update ChildStderr docs to be clearer

Before the docs only had a line about where it was found and that it was
a handle to stderr. This commit changes it so that the summary second line is
removed and that it's a bit clearer about what can be done with it. Part of
#29370
-rw-r--r--src/libstd/process.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libstd/process.rs b/src/libstd/process.rs
index 8cfd8fcd8c6..3795c42f5ef 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -233,8 +233,9 @@ impl fmt::Debug for ChildStdout {
     }
 }
 
-/// A handle to a child process's stderr. This struct is used in the [`stderr`]
-/// field on [`Child`].
+/// A handle to a child process's stderr.
+///
+/// This struct is used in the [`stderr`] field on [`Child`].
 ///
 /// [`Child`]: struct.Child.html
 /// [`stderr`]: struct.Child.html#structfield.stderr