diff options
| author | Pirh <pirh.badger@gmail.com> | 2017-10-13 18:18:09 +0100 |
|---|---|---|
| committer | Pirh <pirh.badger@gmail.com> | 2017-10-13 18:18:09 +0100 |
| commit | 8c4a68dca1428fab4bfb9c9f176ad66e2e1d85fc (patch) | |
| tree | 36fbc77c69ef58b6d900fbcf228a7d3efcf4ad07 | |
| parent | 32c4b714715338e82711e3611681aada3f28cf39 (diff) | |
| download | rust-8c4a68dca1428fab4bfb9c9f176ad66e2e1d85fc.tar.gz rust-8c4a68dca1428fab4bfb9c9f176ad66e2e1d85fc.zip | |
Add line break after summary of process::Output
| -rw-r--r-- | src/libstd/process.rs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/libstd/process.rs b/src/libstd/process.rs index 847dbd14dd6..8287c43ba96 100644 --- a/src/libstd/process.rs +++ b/src/libstd/process.rs @@ -701,9 +701,11 @@ impl AsInnerMut<imp::Command> for Command { fn as_inner_mut(&mut self) -> &mut imp::Command { &mut self.inner } } -/// The output of a finished process. This is returned in a Result by -/// either the [`output`] method of a [`Command`], or the -/// [`wait_with_output`] method of a [`Child`] process. +/// The output of a finished process. +/// +/// This is returned in a Result by either the [`output`] method of a +/// [`Command`], or the [`wait_with_output`] method of a [`Child`] +/// process. /// /// [`Command`]: struct.Command.html /// [`Child`]: struct.Child.html |
