From 8f2b03242d79809854b72a4546ab1d9c0b9b5542 Mon Sep 17 00:00:00 2001 From: Eric Lovett Date: Sat, 5 Nov 2011 02:36:20 -0700 Subject: [PATCH] docs: minor typo fix in child process docs --- doc/api/child_processes.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/child_processes.markdown b/doc/api/child_processes.markdown index e12122fc273..e3262117af3 100644 --- a/doc/api/child_processes.markdown +++ b/doc/api/child_processes.markdown @@ -218,7 +218,7 @@ For example: n.send({ hello: 'world' }); -And then the child script, `'sub.js'` would might look like this: +And then the child script, `'sub.js'` might look like this: process.on('message', function(m) { console.log('CHILD got message:', m);