1
Fork 0

Add line break after summary of process::Output

This commit is contained in:
Pirh 2017-10-13 18:18:09 +01:00
parent 32c4b71471
commit 8c4a68dca1

View file

@ -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