Skip to content

Commit 0aec8bf

Browse files
committed
Fix accidental let
1 parent 55e5285 commit 0aec8bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addon/runmode/runmode.node.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ StringStream.prototype = {
9494
finally { this.lineStart -= n; }
9595
},
9696
lookAhead: function(n) {
97-
let line = this.context.line + n
97+
var line = this.context.line + n
9898
return line >= this.context.lines.length ? null : this.context.lines[line]
9999
}
100100
};

0 commit comments

Comments
 (0)