lint: fix a few semicolons

This commit is contained in:
Trevor Norris 2013-09-24 14:35:30 -07:00
parent 14687ebfc0
commit 25dce6d62d
2 changed files with 2 additions and 2 deletions

View File

@ -877,4 +877,4 @@ exports.pipe = function pipe(pair, socket) {
socket.on('timeout', ontimeout); socket.on('timeout', ontimeout);
return cleartext; return cleartext;
} };

View File

@ -729,7 +729,7 @@ exports.connect = function(/* [port, host], options, cb */) {
host: options.host, host: options.host,
localAddress: options.localAddress localAddress: options.localAddress
}; };
}; }
socket.connect(connect_opt); socket.connect(connect_opt);
} }