docs: minor typo fix in child process docs

This commit is contained in:
Eric Lovett 2011-11-05 02:36:20 -07:00 committed by Ben Noordhuis
parent 9e00b7d3d0
commit 8f2b03242d

View File

@ -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);