From 067ff4354c12a1bef6d81c3dcb9d5473469ac6db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sun, 22 May 2022 17:26:48 +0000 Subject: [PATCH] doc: use serial comma in process docs Refs: https://github.com/nodejs/node/pull/11321 Refs: https://github.com/nodejs/node/pull/17384 --- doc/api/process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/process.md b/doc/api/process.md index b7839d0952c5c9..ecd53469ca4221 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -770,7 +770,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.