Skip to content

Commit

Permalink
doc: clearer log messages in net code samples
Browse files Browse the repository at this point in the history
Code examples in documentation for net.createServer and
net.createConnection contained confusing log messages. This change makes
them clearer.

Signed-off-by: Julien Gilli <julien.gilli@joyent.com>

Cherry-picked-from: nodejs/node-v0.x-archive@8120015
  • Loading branch information
pkcs authored and piscisaureus committed Jan 10, 2015
1 parent c7b333b commit f1e685f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/api/net.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ on port 8124:

var net = require('net');
var server = net.createServer(function(c) { //'connection' listener
console.log('server connected');
console.log('client connected');
c.on('end', function() {
console.log('server disconnected');
console.log('client disconnected');
});
c.write('hello\r\n');
c.pipe(c);
Expand Down Expand Up @@ -98,15 +98,15 @@ Here is an example of a client of echo server as described previously:
var net = require('net');
var client = net.connect({port: 8124},
function() { //'connect' listener
console.log('client connected');
console.log('connected to server!');
client.write('world!\r\n');
});
client.on('data', function(data) {
console.log(data.toString());
client.end();
});
client.on('end', function() {
console.log('client disconnected');
console.log('disconnected from server');
});

To connect on the socket `/tmp/echo.sock` the second line would just be
Expand Down

0 comments on commit f1e685f

Please sign in to comment.