doc: fix typo in child_process documentation
authorEvan Lucas <evanlucas@me.com>
Sun, 28 Feb 2016 12:23:20 +0000 (06:23 -0600)
committerMyles Borins <mborins@us.ibm.com>
Mon, 21 Mar 2016 20:07:00 +0000 (13:07 -0700)
TSCP should be TCP

PR-URL: https://github.com/nodejs/node/pull/5474
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
doc/api/child_process.markdown

index 9ab3b2d..b5febe4 100644 (file)
@@ -808,7 +808,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');