From 6527899526210571c3cc2d4c27caac55e1c8089b Mon Sep 17 00:00:00 2001 From: Philipp Borgers Date: Thu, 24 Jan 2013 01:24:03 +0100 Subject: [PATCH] rename reserved word char to c --- lib/arrayParser.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/arrayParser.js b/lib/arrayParser.js index 7ef2a34f..236a2668 100644 --- a/lib/arrayParser.js +++ b/lib/arrayParser.js @@ -28,8 +28,8 @@ ArrayParser.prototype.nextChar = function() { }; } }; -ArrayParser.prototype.record = function(char) { - return this.recorded.push(char); +ArrayParser.prototype.record = function(c) { + return this.recorded.push(c); }; ArrayParser.prototype.newEntry = function(includeEmpty) { var entry;