From 8537a1fd501abd9d03668eb41267ac0575b84f3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Fri, 10 Jun 2022 20:26:41 +0200 Subject: [PATCH] docs: Consistently mark ExitStatus as code --- library/std/src/process.rs | 4 ++-- 1 file 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 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