Skip to content

Commit 85d08e9

Browse files
authored
Rollup merge of #83463 - ijackson:exitstatusext-doc-grammar, r=kennytm
ExitStatusExt: Fix missing word in two docs messages Looks like I missed the lack of these "and"s.
2 parents 827d1ea + 88ca6c2 commit 85d08e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/std/src/sys/unix/ext/process.rs

+2-2
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)