From f3bf670b5e7a0f0bbee1bf2920f04536efb6a1ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionic=C4=83=20Biz=C4=83u?= Date: Sun, 8 Feb 2015 20:16:08 +0200 Subject: [PATCH] JSHint errors. --- lib/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/index.js b/lib/index.js index 4f717e1..466ec72 100644 --- a/lib/index.js +++ b/lib/index.js @@ -153,7 +153,7 @@ GitStats.iterateDays = function (data, callback) { while (start.format(DATE_FORMAT) !== endStr) { cDay = start.format(data.format); callback(cDay, start); - start.add(1, "days") + start.add(1, "days"); } }; @@ -314,7 +314,7 @@ GitStats.ansiCalendar = function (data, callback) { return DAYS[i] + c; }).join("\n"); - monthHack = "MMM" + monthHack = "MMM"; strYear = monthHack + months.join(" ") + "\n" + strYear; strYear += new Array(5 + 2 * Math.ceil(365 / 7)).join("-")