mirror of https://github.com/nodejs/node.git
Fix typo
parent
2ba3c10d62
commit
1f18648394
|
@ -147,14 +147,14 @@ function setImplmentationMethods (self) {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
function onReadable (readable, writeable) {
|
function onReadable (readable, writable) {
|
||||||
assert(this.socket);
|
assert(this.socket);
|
||||||
var socket = this.socket;
|
var socket = this.socket;
|
||||||
socket._onReadable();
|
socket._onReadable();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function onWritable (readable, writeable) {
|
function onWritable (readable, writable) {
|
||||||
assert(this.socket);
|
assert(this.socket);
|
||||||
var socket = this.socket;
|
var socket = this.socket;
|
||||||
if (socket._connecting) {
|
if (socket._connecting) {
|
||||||
|
|
Loading…
Reference in New Issue