Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@tnie.de>2022-05-22 22:26:12 +0300
committerBryan English <bryan@bryanenglish.com>2022-05-30 19:33:54 +0300
commitb772c13a6226a4201bf7f1f9e7c653db6bc95321 (patch)
tree7cab0dfed08045f3629457bed4257dfab76e0142 /doc
parent701d40496da14f102f8e4cb705d4a2965a4c6d69 (diff)
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>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/process.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/process.md b/doc/api/process.md
index ed698c6347c..ac8f2d12889 100644
--- a/doc/api/process.md
+++ b/doc/api/process.md
@@ -768,7 +768,7 @@ process.on('SIGTERM', handle);
* `'SIGKILL'` cannot have a listener installed, it will unconditionally
terminate Node.js on all platforms.
* `'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
which it is not safe to call JS listeners. Doing so might cause the process
to stop responding.