diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2012-03-29 01:27:57 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2012-03-29 01:36:46 +0200 |
commit | b031671138a6b997e934cfafa17f03247c036c71 (patch) | |
tree | 1b8391054b05f616f1e5b238da5e013c2382b6de /lib/tty.js | |
parent | 973bbecf1a6a75cae0fcbe7a152d2e0640ebc60b (diff) | |
download | node-new-b031671138a6b997e934cfafa17f03247c036c71.tar.gz |
tty, readline: fix style errors
Diffstat (limited to 'lib/tty.js')
-rw-r--r-- | lib/tty.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tty.js b/lib/tty.js index 5bb73ff0a1..6f6e8ad235 100644 --- a/lib/tty.js +++ b/lib/tty.js @@ -104,7 +104,7 @@ WriteStream.prototype._refreshSize = function() { this.rows = newRows; this.emit('resize'); } -} +}; // backwards-compat |