Skip to content

Commit 6527899

Browse files
committed
rename reserved word char to c
1 parent cf6da99 commit 6527899

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/arrayParser.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ ArrayParser.prototype.nextChar = function() {
2828
};
2929
}
3030
};
31-
ArrayParser.prototype.record = function(char) {
32-
return this.recorded.push(char);
31+
ArrayParser.prototype.record = function(c) {
32+
return this.recorded.push(c);
3333
};
3434
ArrayParser.prototype.newEntry = function(includeEmpty) {
3535
var entry;

0 commit comments

Comments
 (0)