doc: use serial comma in process docs

Refs: https://github.com/nodejs/node/pull/11321
Refs: https://github.com/nodejs/node/pull/17384

PR-URL: https://github.com/nodejs/node/pull/43179
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
Tobias Nießen 2022-05-22 21:26:12 +02:00 committed by GitHub
parent 419669cb79
commit 40fa2e9c11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -770,7 +770,7 @@ process.on('SIGTERM', handle);
* `'SIGKILL'` cannot have a listener installed, it will unconditionally * `'SIGKILL'` cannot have a listener installed, it will unconditionally
terminate Node.js on all platforms. terminate Node.js on all platforms.
* `'SIGSTOP'` cannot have a listener installed. * `'SIGSTOP'` cannot have a listener installed.
* `'SIGBUS'`, `'SIGFPE'`, `'SIGSEGV'` and `'SIGILL'`, when not raised * `'SIGBUS'`, `'SIGFPE'`, `'SIGSEGV'`, and `'SIGILL'`, when not raised
artificially using kill(2), inherently leave the process in a state from artificially using kill(2), inherently leave the process in a state from
which it is not safe to call JS listeners. Doing so might cause the process which it is not safe to call JS listeners. Doing so might cause the process
to stop responding. to stop responding.