docs: minor typo fix in child process docs
authorEric Lovett <etlovett@gmail.com>
Sat, 5 Nov 2011 09:36:20 +0000 (02:36 -0700)
committerBen Noordhuis <info@bnoordhuis.nl>
Sat, 5 Nov 2011 09:41:39 +0000 (10:41 +0100)
doc/api/child_processes.markdown

index e12122f..e326211 100644 (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);