Skip to content

Commit ac3e264

Browse files
Trottcodebytere
authored andcommitted
doc: fix comma splices in process.md
PR-URL: #24357 Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Vse Mozhet Byt <[email protected]>
1 parent 916ead9 commit ac3e264

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/api/process.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ process.on('SIGTERM', handle);
429429
removed (Node.js will no longer exit).
430430
* `'SIGPIPE'` is ignored by default. It can have a listener installed.
431431
* `'SIGHUP'` is generated on Windows when the console window is closed, and on
432-
other platforms under various similar conditions, see signal(7). It can have a
432+
other platforms under various similar conditions. See signal(7). It can have a
433433
listener installed, however Node.js will be unconditionally terminated by
434434
Windows about 10 seconds later. On non-Windows platforms, the default
435435
behavior of `SIGHUP` is to terminate Node.js, but once a listener has been
@@ -1382,7 +1382,7 @@ process.kill(process.pid, 'SIGHUP');
13821382
```
13831383

13841384
When `SIGUSR1` is received by a Node.js process, Node.js will start the
1385-
debugger, see [Signal Events][].
1385+
debugger. See [Signal Events][].
13861386

13871387
## process.mainModule
13881388
<!-- YAML
@@ -1847,7 +1847,7 @@ The `process.stderr` property returns a stream connected to
18471847
stream) unless fd `2` refers to a file, in which case it is
18481848
a [Writable][] stream.
18491849

1850-
`process.stderr` differs from other Node.js streams in important ways, see
1850+
`process.stderr` differs from other Node.js streams in important ways. See
18511851
[note on process I/O][] for more information.
18521852

18531853
## process.stdin
@@ -1897,7 +1897,7 @@ For example, to copy `process.stdin` to `process.stdout`:
18971897
process.stdin.pipe(process.stdout);
18981898
```
18991899

1900-
`process.stdout` differs from other Node.js streams in important ways, see
1900+
`process.stdout` differs from other Node.js streams in important ways. See
19011901
[note on process I/O][] for more information.
19021902

19031903
### A note on process I/O

0 commit comments

Comments
 (0)