@@ -1417,13 +1417,13 @@ impl From<fs::File> for Stdio {
1417
1417
/// For proper error reporting of failed processes, print the value of `ExitStatus` or
1418
1418
/// `ExitStatusError` using their implementations of [`Display`](crate::fmt::Display).
1419
1419
///
1420
- /// # Differences from `ExitStatus `
1420
+ /// # Differences from `ExitCode `
1421
1421
///
1422
- /// `ExitCode` is intended for terminating the currently running process, via
1423
- /// the `Termination` trait, in contrast to [ `ExitStatus`] , which represents the
1422
+ /// [ `ExitCode`] is intended for terminating the currently running process, via
1423
+ /// the `Termination` trait, in contrast to `ExitStatus`, which represents the
1424
1424
/// termination of a child process. These APIs are separate due to platform
1425
1425
/// compatibility differences and their expected usage; it is not generally
1426
- /// possible to exactly reproduce an ExitStatus from a child for the current
1426
+ /// possible to exactly reproduce an ` ExitStatus` from a child for the current
1427
1427
/// process after the fact.
1428
1428
///
1429
1429
/// [`status`]: Command::status
@@ -1684,7 +1684,7 @@ impl crate::error::Error for ExitStatusError {}
1684
1684
/// the `Termination` trait, in contrast to [`ExitStatus`], which represents the
1685
1685
/// termination of a child process. These APIs are separate due to platform
1686
1686
/// compatibility differences and their expected usage; it is not generally
1687
- /// possible to exactly reproduce an ExitStatus from a child for the current
1687
+ /// possible to exactly reproduce an ` ExitStatus` from a child for the current
1688
1688
/// process after the fact.
1689
1689
///
1690
1690
/// # Examples
0 commit comments