From d0e8ec575128d756148215bca383140185baa37b Mon Sep 17 00:00:00 2001 From: Justin Hurley Date: Wed, 18 Feb 2015 19:21:04 -0800 Subject: [PATCH] Fixes a grammar mistake in lib/index.js --- lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/index.js b/lib/index.js index cd25d0d..03c2c04 100644 --- a/lib/index.js +++ b/lib/index.js @@ -64,7 +64,7 @@ GitStats.record = function (data, callback) { } if (typeof data.url !== "string" || !data.url) { - callback(new Error("Invalid url field. This commit is not recorded into the git-stats history since you didn't added the remote url. You can import the previous commits using the git-stats-importer tool.")); + callback(new Error("Invalid url field. This commit is not recorded into the git-stats history since you haven't added the remote url. You can import the previous commits using the git-stats-importer tool.")); return GitStats; }