File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
library/std/src/sys/unix/ext Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -227,14 +227,14 @@ pub trait ExitStatusExt: Sealed {
227227 /// If the process was stopped by a signal, returns that signal.
228228 ///
229229 /// In other words, if `WIFSTOPPED`, this returns `WSTOPSIG`. This is only possible if the status came from
230- /// a `wait` system call which was passed `WUNTRACED`, was then converted into an `ExitStatus`.
230+ /// a `wait` system call which was passed `WUNTRACED`, and was then converted into an `ExitStatus`.
231231 #[ unstable( feature = "unix_process_wait_more" , issue = "80695" ) ]
232232 fn stopped_signal ( & self ) -> Option < i32 > ;
233233
234234 /// Whether the process was continued from a stopped status.
235235 ///
236236 /// Ie, `WIFCONTINUED`. This is only possible if the status came from a `wait` system call
237- /// which was passed `WCONTINUED`, was then converted into an `ExitStatus`.
237+ /// which was passed `WCONTINUED`, and was then converted into an `ExitStatus`.
238238 #[ unstable( feature = "unix_process_wait_more" , issue = "80695" ) ]
239239 fn continued ( & self ) -> bool ;
240240
You can’t perform that action at this time.
0 commit comments