fix a syntax error

This commit is contained in:
Sami Samhuri 2011-05-14 15:28:06 -07:00
parent 34a5d9455e
commit 3ecc25e518

View file

@ -27,7 +27,7 @@ function LineEmitter(fileOrStream) {
util.inherits(LineEmitter, EventEmitter); util.inherits(LineEmitter, EventEmitter);
LineEmitter.prototype.checkForLine = function() { LineEmitter.prototype.checkForLine = function() {
var i = this.buffer.indexOf('\n'); var i = this.buffer.indexOf('\n')
, self = this , self = this
; ;
if (i === -1) { if (i === -1) {