From 3c79bbda4775a5df65366b41d2c994bb09389a8e Mon Sep 17 00:00:00 2001 From: Evan Lucas Date: Sun, 28 Feb 2016 06:23:20 -0600 Subject: [PATCH] doc: fix typo in child_process documentation TSCP should be TCP PR-URL: https://github.com/nodejs/node/pull/5474 Reviewed-By: Colin Ihrig --- doc/api/child_process.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/child_process.markdown b/doc/api/child_process.markdown index 7d6d7c1b79a..248834a64c9 100644 --- a/doc/api/child_process.markdown +++ b/doc/api/child_process.markdown @@ -826,7 +826,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');