diff options
author | Adam Spiers <git@adamspiers.org> | 2015-01-11 15:40:19 +0000 |
---|---|---|
committer | Adam Spiers <git@adamspiers.org> | 2015-01-11 15:40:19 +0000 |
commit | e2164469b91a9668d149d769b35b705ead563e34 (patch) | |
tree | f3ccb26103ae1167d144a1a14b5c34f9cbe3af84 | |
parent | 17359971ad244262ba513769708086cb9ec13941 (diff) | |
download | git-deps-e2164469b91a9668d149d769b35b705ead563e34.tar.gz |
fix bug in new data notification pluralization
-rw-r--r-- | html/js/git-deps-graph.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/html/js/git-deps-graph.coffee b/html/js/git-deps-graph.coffee index 84bbd83..47457d4 100644 --- a/html/js/git-deps-graph.coffee +++ b/html/js/git-deps-graph.coffee @@ -231,7 +231,7 @@ new_data_notification = (new_data) -> notification += "<p>#{new_nodes} new commit" notification += "s" unless new_nodes == 1 notification += "; #{new_deps} new " + - ((if new_nodes == 1 then "dependency" else "dependencies")) + (if new_deps == 1 then "dependency" else "dependencies") notification += "</p>" gdn.success notification |