From a993a488fa1f5cbfb5175a0494e4a484202f6420 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Tue, 13 Nov 2018 20:41:51 -0800 Subject: [PATCH] doc: fix comma splices in process.md PR-URL: https://github.com/nodejs/node/pull/24357 Reviewed-By: Daniel Bevenius Reviewed-By: Colin Ihrig Reviewed-By: Vse Mozhet Byt --- doc/api/process.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/api/process.md b/doc/api/process.md index 3907271bbfa26c..d555e54caeeac9 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -429,7 +429,7 @@ process.on('SIGTERM', handle); removed (Node.js will no longer exit). * `'SIGPIPE'` is ignored by default. It can have a listener installed. * `'SIGHUP'` is generated on Windows when the console window is closed, and on - other platforms under various similar conditions, see signal(7). It can have a + other platforms under various similar conditions. See signal(7). It can have a listener installed, however Node.js will be unconditionally terminated by Windows about 10 seconds later. On non-Windows platforms, the default behavior of `SIGHUP` is to terminate Node.js, but once a listener has been @@ -1382,7 +1382,7 @@ process.kill(process.pid, 'SIGHUP'); ``` When `SIGUSR1` is received by a Node.js process, Node.js will start the -debugger, see [Signal Events][]. +debugger. See [Signal Events][]. ## process.mainModule