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