diff options
| author | bors <bors@rust-lang.org> | 2021-07-30 04:34:13 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-07-30 04:34:13 +0000 |
| commit | fe1c942eee3489743d655d81ca89166217db0547 (patch) | |
| tree | 093f237e01769880448c5220665ea3d192d56e78 /library/std/src/os/unix/process.rs | |
| parent | e66a8c260c0bcc4e7a8943f01d75d70ff640fb38 (diff) | |
| parent | ffcf8a0d7681bb5038dc00479d824d9e20f5f989 (diff) | |
| download | rust-fe1c942eee3489743d655d81ca89166217db0547.tar.gz rust-fe1c942eee3489743d655d81ca89166217db0547.zip | |
Auto merge of #87445 - amalik18:issue-83584-fix, r=kennytm
Fix may not to appropriate might not or must not I went through and changed occurrences of `may not` to be more explicit with `might not` and `must not`.
Diffstat (limited to 'library/std/src/os/unix/process.rs')
| -rw-r--r-- | library/std/src/os/unix/process.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/os/unix/process.rs b/library/std/src/os/unix/process.rs index f3b5227df86..615290d2703 100644 --- a/library/std/src/os/unix/process.rs +++ b/library/std/src/os/unix/process.rs @@ -83,7 +83,7 @@ pub trait CommandExt: Sealed { /// /// When this closure is run, aspects such as the stdio file descriptors and /// working directory have successfully been changed, so output to these - /// locations may not appear where intended. + /// locations might not appear where intended. /// /// [POSIX fork() specification]: /// https://pubs.opengroup.org/onlinepubs/9699919799/functions/fork.html |
