Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Sep 25, 2011
1 parent e7b3a39 commit 653faf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cache.js
Expand Up @@ -72,7 +72,7 @@ Cache.prototype.add = function(key){
// initialize store
var len = this.keys.push(key);

// limit reached, invalid LRU
// limit reached, invalidate LRU
if (len > this.limit) this.remove(this.keys.shift());

var arr = this.store[key] = [];
Expand Down

0 comments on commit 653faf9

Please sign in to comment.