diff options
| author | bors <bors@rust-lang.org> | 2017-04-09 15:30:20 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-04-09 15:30:20 +0000 |
| commit | fa332c901575da70ac7a612609a26b752b1adc65 (patch) | |
| tree | 5e012f51e29ed79e984ed1d15f6c59e1f0d5d8d5 | |
| parent | 2c48ae6f7ffae392d85c86240c67f49df01f44fd (diff) | |
| parent | c7f2dbef90231eab0b0f2032854823d192a964eb (diff) | |
| download | rust-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.rs | 5 |
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 |
