Browse Source

doc: use US English for consistency

behaviour -> behavior

PR-URL: https://github.com/nodejs/node/pull/2784
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Brendan Ashworth <brendan.ashworth@me.com>
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
v4.x
Anne-Gaelle Colom 9 years ago
committed by Rod Vagg
parent
commit
d664b95581
  1. 4
      CONTRIBUTING.md
  2. 2
      doc/api/modules.markdown
  3. 6
      doc/api/process.markdown

4
CONTRIBUTING.md

@ -198,7 +198,7 @@ CoC](http://www.rust-lang.org/conduct.html).
* Please keep unstructured critique to a minimum. If you have solid * Please keep unstructured critique to a minimum. If you have solid
ideas you want to experiment with, make a fork and see how it works. ideas you want to experiment with, make a fork and see how it works.
* We will exclude you from interaction if you insult, demean or harass * We will exclude you from interaction if you insult, demean or harass
anyone. That is not welcome behaviour. We interpret the term anyone. That is not welcome behavior. We interpret the term
"harassment" as including the definition in the [Citizen Code of "harassment" as including the definition in the [Citizen Code of
Conduct](http://citizencodeofconduct.org/); if you have any lack of Conduct](http://citizencodeofconduct.org/); if you have any lack of
clarity about what might be included in that concept, please read clarity about what might be included in that concept, please read
@ -212,7 +212,7 @@ CoC](http://www.rust-lang.org/conduct.html).
a newcomer, we care about making this community a safe place for you a newcomer, we care about making this community a safe place for you
and we've got your back. and we've got your back.
* Likewise any spamming, trolling, flaming, baiting or other * Likewise any spamming, trolling, flaming, baiting or other
attention-stealing behaviour is not welcome. attention-stealing behavior is not welcome.
* Avoid the use of personal pronouns in code comments or * Avoid the use of personal pronouns in code comments or
documentation. There is no need to address persons when explaining documentation. There is no need to address persons when explaining
code (e.g. "When the developer") code (e.g. "When the developer")

2
doc/api/modules.markdown

@ -301,7 +301,7 @@ The `exports` variable that is available within a module starts as a reference
to `module.exports`. As with any variable, if you assign a new value to it, it to `module.exports`. As with any variable, if you assign a new value to it, it
is no longer bound to the previous value. is no longer bound to the previous value.
To illustrate the behaviour, imagine this hypothetical implementation of To illustrate the behavior, imagine this hypothetical implementation of
`require()`: `require()`:
function require(...) { function require(...) {

6
doc/api/process.markdown

@ -216,15 +216,15 @@ Note:
install a listener but that won't stop the debugger from starting. install a listener but that won't stop the debugger from starting.
- `SIGTERM` and `SIGINT` have default handlers on non-Windows platforms that resets - `SIGTERM` and `SIGINT` have default handlers on non-Windows platforms that resets
the terminal mode before exiting with code `128 + signal number`. If one of the terminal mode before exiting with code `128 + signal number`. If one of
these signals has a listener installed, its default behaviour will be removed these signals has a listener installed, its default behavior will be removed
(Node.js will no longer exit). (Node.js will no longer exit).
- `SIGPIPE` is ignored by default, it can have a listener installed. - `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 - `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 platforms under various similar conditions, see signal(7). It can have a
listener installed, however Node.js will be unconditionally terminated by listener installed, however Node.js will be unconditionally terminated by
Windows about 10 seconds later. On non-Windows platforms, the default Windows about 10 seconds later. On non-Windows platforms, the default
behaviour of `SIGHUP` is to terminate Node.js, but once a listener has been behavior of `SIGHUP` is to terminate Node.js, but once a listener has been
installed its default behaviour will be removed. installed its default behavior will be removed.
- `SIGTERM` is not supported on Windows, it can be listened on. - `SIGTERM` is not supported on Windows, it can be listened on.
- `SIGINT` from the terminal is supported on all platforms, and can usually be - `SIGINT` from the terminal is supported on all platforms, and can usually be
generated with `CTRL+C` (though this may be configurable). It is not generated generated with `CTRL+C` (though this may be configurable). It is not generated

Loading…
Cancel
Save