tty.WritableStream should be writable

pull/5370/head
Ryan Dahl 2011-10-10 13:41:04 -07:00
parent 7cf787a2d1
commit e6092f337c
1 changed files with 1 additions and 0 deletions

View File

@ -318,6 +318,7 @@ function WriteStream(fd) {
});
this.readable = false;
this.writable = true;
}
inherits(WriteStream, net.Socket);
exports.WriteStream = WriteStream;