diff --git a/library/std/src/sys/unix/ext/process.rs b/library/std/src/sys/unix/ext/process.rs index 7830148b7e8..a20f826e7f0 100644 --- a/library/std/src/sys/unix/ext/process.rs +++ b/library/std/src/sys/unix/ext/process.rs @@ -172,7 +172,7 @@ pub trait ExitStatusExt { /// If the process was terminated by a signal, returns that signal. /// - /// Ie, if `WIFSIGNALED`, this returns `WTERMSIG`. + /// In other words, if `WIFSIGNALED`, this returns `WTERMSIG`. #[stable(feature = "rust1", since = "1.0.0")] fn signal(&self) -> Option<i32>;