Edit docs of ExitStatus

The documentation of [`ExitStatus`] are extended to be at the same depth as [`Output`].
This commit is contained in:
Reinier Maas 2019-06-05 08:41:37 +02:00 committed by GitHub
parent 81eb15210a
commit 674f24e132
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1153,10 +1153,13 @@ impl From<fs::File> for Stdio {
///
/// This `struct` is used to represent the exit status of a child process.
/// Child processes are created via the [`Command`] struct and their exit
/// status is exposed through the [`status`] method.
/// status is exposed through the [`status`] method, or the [`wait`] method
/// of a [`Child`] process.
///
/// [`Command`]: struct.Command.html
/// [`Child`]: struct.Child.html
/// [`status`]: struct.Command.html#method.status
/// [`wait`]: struct.Child.html#method.wait
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
#[stable(feature = "process", since = "1.0.0")]
pub struct ExitStatus(imp::ExitStatus);