_exit.2: Minor wording tweaks

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2020-03-04 22:33:41 +01:00
parent b2a8e05384
commit 07f462e9f2
1 changed files with 1 additions and 2 deletions

View File

@ -50,7 +50,6 @@ _ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L
.RE
.ad
.SH DESCRIPTION
The function
.BR _exit ()
terminates the calling process "immediately".
Any open file descriptors belonging to the process are closed.
@ -67,7 +66,7 @@ signal.
The value
.I "status & 0xFF"
is returned to the parent process as the process's exit status, and
can be collected using one of the
can be collected by the parent using one of the
.BR wait (2)
family of calls.
.PP