@@ -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
@@ -1847,7 +1847,7 @@ The `process.stderr` property returns a stream connected to
1847
1847
stream) unless fd ` 2 ` refers to a file, in which case it is
1848
1848
a [ Writable] [ ] stream.
1849
1849
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
1851
1851
[ note on process I/O] [ ] for more information.
1852
1852
1853
1853
## process.stdin
@@ -1897,7 +1897,7 @@ For example, to copy `process.stdin` to `process.stdout`:
1897
1897
process .stdin .pipe (process .stdout );
1898
1898
```
1899
1899
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
1901
1901
[ note on process I/O] [ ] for more information.
1902
1902
1903
1903
### A note on process I/O
0 commit comments