Skip to content

Commit

Permalink
Fix stats.Uniques.clear() where unique count wasn't actually cleared.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonjlee committed Jun 16, 2011
1 parent f0c4f1d commit 0f37004
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ Uniques.prototype = {
},
clear: function() {
this.items = {};
this.unqiues = 0;
this.uniques = 0;
this.length = 0;
},
summary: function() {
Expand Down
2 changes: 1 addition & 1 deletion nodeload.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0f37004

Please sign in to comment.