summaryrefslogtreecommitdiff
path: root/doc/api/process.md
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2018-11-13 20:41:51 -0800
committerShelley Vohr <shelley.vohr@gmail.com>2019-01-12 14:17:41 -0800
commitac3e264f1c37f06168e3a2493aa9039583f508ea (patch)
tree6fd6b1cc1e879b2af98e2610eba1f182de68f392 /doc/api/process.md
parent916ead940d7b943f8ec8c689599cab3da84fce18 (diff)
downloadnode-new-ac3e264f1c37f06168e3a2493aa9039583f508ea.tar.gz
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/api/process.md')
-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 f33c47295e..af5694b939 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
@@ -1847,7 +1847,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
@@ -1897,7 +1897,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