From 795c85ba1c33f370f4acbda97744762543052400 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 5b87a34d88a7e3..73102fc01a4ae6 100644 --- a/doc/api/child_process.markdown +++ b/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');