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