aboutsummaryrefslogtreecommitdiff
path: root/doc/api/net.markdown
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2015-08-13 12:14:34 -0400
committercjihrig <cjihrig@gmail.com>2015-08-23 17:59:43 -0400
commita69ab27ab458385d24676792b75ad1c25b8c30e5 (patch)
treeeb44f3d0affb9173c2822fbbf25aa2a8a7ae6fe2 /doc/api/net.markdown
parentae8d436623109f315229ca9cc05715af362257b0 (diff)
downloadandroid-node-v8-a69ab27ab458385d24676792b75ad1c25b8c30e5.tar.gz
android-node-v8-a69ab27ab458385d24676792b75ad1c25b8c30e5.tar.bz2
android-node-v8-a69ab27ab458385d24676792b75ad1c25b8c30e5.zip
node: rename from io.js to node
This commit replaces instances of io.js with Node.js, based on the recent convergence. There are some remaining instances of io.js, related to build and the installer. Fixes: https://github.com/nodejs/node/issues/2361 PR-URL: https://github.com/nodejs/node/pull/2367 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: João Reis <reis@janeasystems.com>
Diffstat (limited to 'doc/api/net.markdown')
-rw-r--r--doc/api/net.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/net.markdown b/doc/api/net.markdown
index adc1d97053..1c8b71627d 100644
--- a/doc/api/net.markdown
+++ b/doc/api/net.markdown
@@ -147,7 +147,7 @@ would be to wait a second and then try again. This can be done with
}
});
-(Note: All sockets in io.js set `SO_REUSEADDR` already)
+(Note: All sockets in Node.js set `SO_REUSEADDR` already)
### server.listen(path[, callback])
@@ -324,7 +324,7 @@ following this event. See example in discussion of `server.listen`.
This object is an abstraction of a TCP or local socket. `net.Socket`
instances implement a duplex Stream interface. They can be created by the
-user and used as a client (with `connect()`) or they can be created by io.js
+user and used as a client (with `connect()`) or they can be created by Node.js
and passed to the user through the `'connection'` event of a server.
### new net.Socket([options])
@@ -388,7 +388,7 @@ with options either as either `{port: port, host: host}` or `{path: path}`.
`net.Socket` has the property that `socket.write()` always works. This is to
help users get up and running quickly. The computer cannot always keep up
with the amount of data that is written to a socket - the network connection
-simply might be too slow. io.js will internally queue up the data written to a
+simply might be too slow. Node.js will internally queue up the data written to a
socket and send it out over the wire when it is possible. (Internally it is
polling on the socket's file descriptor for being writable).