doc: fix three typos
authorRobin Lee <cheeselee@fedoraproject.org>
Sun, 2 Sep 2012 07:36:21 +0000 (15:36 +0800)
committerBen Noordhuis <info@bnoordhuis.nl>
Mon, 17 Sep 2012 14:05:53 +0000 (16:05 +0200)
doc/api/child_process.markdown
doc/api/cluster.markdown
doc/api/net.markdown

index 092cb31..d4616e6 100644 (file)
@@ -221,7 +221,7 @@ The `child.js` could look like this:
 
     process.on('message', function(m, socket) {
       if (m === 'socket') {
-        socket.end('You where handled as a ' + process.argv[2] + ' person');
+        socket.end('You were handled as a ' + process.argv[2] + ' person');
       }
     });
 
index 032e381..79aa790 100644 (file)
@@ -69,7 +69,7 @@ This causes potentially surprising behavior in three edge cases:
    the worker to use the supplied handle, rather than talk to the master
    process.  If the worker already has the handle, then it's presumed
    that you know what you are doing.
-3. `server.listen(0)` Normally, this will case servers to listen on a
+3. `server.listen(0)` Normally, this will cause servers to listen on a
    random port.  However, in a cluster, each worker will receive the
    same "random" port each time they do `listen(0)`.  In essence, the
    port is random the first time, but predictable thereafter.  If you
index 6d4e238..c9b45bd 100644 (file)
@@ -21,7 +21,7 @@ packet when the other end of the socket sends a FIN packet. The socket becomes
 non-readable, but still writable. You should call the `end()` method explicitly.
 See ['end'][] event for more information.
 
-Here is an example of a echo server which listens for connections
+Here is an example of an echo server which listens for connections
 on port 8124:
 
     var net = require('net');