summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2018-11-13 20:41:51 -0800
committerRich Trott <rtrott@gmail.com>2018-11-13 22:13:32 -0800
commit4a7b401e5f78f49ce8378031fd456f27a0baa7b4 (patch)
tree9a527d5b8d49917b2f24cf1e15322d1f93901721 /doc
parent12554e01f5ec3e19c96c0cd7f01296058edb58cf (diff)
downloadandroid-node-v8-4a7b401e5f78f49ce8378031fd456f27a0baa7b4.tar.gz
android-node-v8-4a7b401e5f78f49ce8378031fd456f27a0baa7b4.tar.bz2
android-node-v8-4a7b401e5f78f49ce8378031fd456f27a0baa7b4.zip
doc: fix comma splices in process.md
PR-URL: https://github.com/nodejs/node/pull/24357 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/process.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/api/process.md b/doc/api/process.md
index 3907271bbf..d555e54cae 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
<!-- YAML
@@ -1840,7 +1840,7 @@ The `process.stderr` property returns a stream connected to
stream) unless fd `2` refers to a file, in which case it is
a [Writable][] stream.
-`process.stderr` differs from other Node.js streams in important ways, see
+`process.stderr` differs from other Node.js streams in important ways. See
[note on process I/O][] for more information.
## process.stdin
@@ -1890,7 +1890,7 @@ For example, to copy `process.stdin` to `process.stdout`:
process.stdin.pipe(process.stdout);
```
-`process.stdout` differs from other Node.js streams in important ways, see
+`process.stdout` differs from other Node.js streams in important ways. See
[note on process I/O][] for more information.
### A note on process I/O