@@ -216,15 +216,15 @@ Note:
216
216
install a listener but that won't stop the debugger from starting.
217
217
- ` SIGTERM ` and ` SIGINT ` have default handlers on non-Windows platforms that resets
218
218
the terminal mode before exiting with code ` 128 + signal number ` . If one of
219
- these signals has a listener installed, its default behaviour will be removed
219
+ these signals has a listener installed, its default behavior will be removed
220
220
(Node.js will no longer exit).
221
221
- ` SIGPIPE ` is ignored by default, it can have a listener installed.
222
222
- ` SIGHUP ` is generated on Windows when the console window is closed, and on other
223
223
platforms under various similar conditions, see signal(7). It can have a
224
224
listener installed, however Node.js will be unconditionally terminated by
225
225
Windows about 10 seconds later. On non-Windows platforms, the default
226
- behaviour of ` SIGHUP ` is to terminate Node.js, but once a listener has been
227
- installed its default behaviour will be removed.
226
+ behavior of ` SIGHUP ` is to terminate Node.js, but once a listener has been
227
+ installed its default behavior will be removed.
228
228
- ` SIGTERM ` is not supported on Windows, it can be listened on.
229
229
- ` SIGINT ` from the terminal is supported on all platforms, and can usually be
230
230
generated with ` CTRL+C ` (though this may be configurable). It is not generated
0 commit comments