doc: fix three typos

v0.8.16-release
Robin Lee 2012-09-02 15:36:21 +08:00 committed by Ben Noordhuis
parent 96ca59fbf3
commit a08271c7a8
3 changed files with 3 additions and 3 deletions

View 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');
}
});

View 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

View 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');