about summary refs log tree commit diff
path: root/library/std
diff options
context:
space:
mode:
authorMartin Kröning <mkroening@posteo.net>2022-06-10 20:26:41 +0200
committerMartin Kröning <mkroening@posteo.net>2022-06-10 20:26:41 +0200
commit8537a1fd501abd9d03668eb41267ac0575b84f3c (patch)
tree510e7b4fc24a68051ea3a76172d4ff3354668e05 /library/std
parent3b45521acf2af899a94792aa1e888422c7447168 (diff)
docs: Consistently mark ExitStatus as code
Diffstat (limited to 'library/std')
-rw-r--r--library/std/src/process.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/process.rs b/library/std/src/process.rs
index e13520ed89e..82cd3647040 100644
--- a/library/std/src/process.rs
+++ b/library/std/src/process.rs
@@ -1423,7 +1423,7 @@ impl From<fs::File> for Stdio {
 /// the `Termination` trait, in contrast to `ExitStatus`, which represents the
 /// termination of a child process. These APIs are separate due to platform
 /// compatibility differences and their expected usage; it is not generally
-/// possible to exactly reproduce an ExitStatus from a child for the current
+/// possible to exactly reproduce an `ExitStatus` from a child for the current
 /// process after the fact.
 ///
 /// [`status`]: Command::status
@@ -1684,7 +1684,7 @@ impl crate::error::Error for ExitStatusError {}
 /// the `Termination` trait, in contrast to [`ExitStatus`], which represents the
 /// termination of a child process. These APIs are separate due to platform
 /// compatibility differences and their expected usage; it is not generally
-/// possible to exactly reproduce an ExitStatus from a child for the current
+/// possible to exactly reproduce an `ExitStatus` from a child for the current
 /// process after the fact.
 ///
 /// # Examples