@@ -429,7 +429,7 @@ process.on('SIGTERM', handle);
429
429
removed (Node.js will no longer exit).
430
430
* ` 'SIGPIPE' ` is ignored by default. It can have a listener installed.
431
431
* ` '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
433
433
listener installed, however Node.js will be unconditionally terminated by
434
434
Windows about 10 seconds later. On non-Windows platforms, the default
435
435
behavior of ` SIGHUP ` is to terminate Node.js, but once a listener has been
@@ -1382,7 +1382,7 @@ process.kill(process.pid, 'SIGHUP');
1382
1382
```
1383
1383
1384
1384
When ` SIGUSR1 ` is received by a Node.js process, Node.js will start the
1385
- debugger, see [ Signal Events] [ ] .
1385
+ debugger. See [ Signal Events] [ ] .
1386
1386
1387
1387
## process.mainModule
1388
1388
<!-- YAML
@@ -1840,7 +1840,7 @@ The `process.stderr` property returns a stream connected to
1840
1840
stream) unless fd ` 2 ` refers to a file, in which case it is
1841
1841
a [ Writable] [ ] stream.
1842
1842
1843
- ` process.stderr ` differs from other Node.js streams in important ways, see
1843
+ ` process.stderr ` differs from other Node.js streams in important ways. See
1844
1844
[ note on process I/O] [ ] for more information.
1845
1845
1846
1846
## process.stdin
@@ -1890,7 +1890,7 @@ For example, to copy `process.stdin` to `process.stdout`:
1890
1890
process .stdin .pipe (process .stdout );
1891
1891
```
1892
1892
1893
- ` process.stdout ` differs from other Node.js streams in important ways, see
1893
+ ` process.stdout ` differs from other Node.js streams in important ways. See
1894
1894
[ note on process I/O] [ ] for more information.
1895
1895
1896
1896
### A note on process I/O
0 commit comments