From b772c13a6226a4201bf7f1f9e7c653db6bc95321 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sun, 22 May 2022 21:26:12 +0200 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 PR-URL: https://github.com/nodejs/node/pull/43179 Reviewed-By: Rich Trott Reviewed-By: Antoine du Hamel Reviewed-By: Luigi Pinca --- 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 ed698c6347cbf7..ac8f2d1288961b 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.