File tree 1 file changed +2
-2
lines changed
library/std/src/sys/unix/ext
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 {
227
227
/// If the process was stopped by a signal, returns that signal.
228
228
///
229
229
/// 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`.
231
231
#[ unstable( feature = "unix_process_wait_more" , issue = "80695" ) ]
232
232
fn stopped_signal ( & self ) -> Option < i32 > ;
233
233
234
234
/// Whether the process was continued from a stopped status.
235
235
///
236
236
/// 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`.
238
238
#[ unstable( feature = "unix_process_wait_more" , issue = "80695" ) ]
239
239
fn continued ( & self ) -> bool ;
240
240
You can’t perform that action at this time.
0 commit comments