Browse Source

doc: fix typo in child_process documentation

TSCP should be TCP

PR-URL: https://github.com/nodejs/node/pull/5474
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
v5.x
Evan Lucas 9 years ago
committed by Jeremiah Senkpiel
parent
commit
795c85ba1c
  1. 2
      doc/api/child_process.markdown

2
doc/api/child_process.markdown

@ -817,7 +817,7 @@ used to implement flow control.
#### Example: sending a server object
The `sendHandle` argument can be used, for instance, to pass the handle of
a TSCP server object to the child process as illustrated in the example below:
a TCP server object to the child process as illustrated in the example below:
```js
const child = require('child_process').fork('child.js');

Loading…
Cancel
Save