about summary refs log tree commit diff
path: root/library/std/src/os/unix/process.rs
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2021-11-12 19:17:31 +0100
committerGitHub <noreply@github.com>2021-11-12 19:17:31 +0100
commit160602b48526b857ff838708eece72c9db55c95c (patch)
treed27c5c51ee2d879e5e388b4354874af0c0d85bb8 /library/std/src/os/unix/process.rs
parent70532c4503c91d308bf0a1b1b2e1a3e2f5635ced (diff)
parentfe39fb314973f16dcb73b1f6ed8395aaf29299ec (diff)
downloadrust-160602b48526b857ff838708eece72c9db55c95c.tar.gz
rust-160602b48526b857ff838708eece72c9db55c95c.zip
Rollup merge of #90704 - ijackson:exitstatus-comments, r=joshtriplett
Unix ExitStatus comments and a tiny docs fix

Some nits left over from #88300
Diffstat (limited to 'library/std/src/os/unix/process.rs')
-rw-r--r--library/std/src/os/unix/process.rs2
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 01b8303a6c3..855f900430c 100644
--- a/library/std/src/os/unix/process.rs
+++ b/library/std/src/os/unix/process.rs
@@ -207,7 +207,7 @@ impl CommandExt for process::Command {
 /// [`ExitStatusError`](process::ExitStatusError).
 ///
 /// On Unix, `ExitStatus` **does not necessarily represent an exit status**, as
-/// passed to the `exit` system call or returned by
+/// passed to the `_exit` system call or returned by
 /// [`ExitStatus::code()`](crate::process::ExitStatus::code).  It represents **any wait status**
 /// as returned by one of the `wait` family of system
 /// calls.