From a80dd776d9577cc8feb25bc32e561aaf95ac3042 Mon Sep 17 00:00:00 2001 From: nuintun Date: Fri, 4 Dec 2015 14:10:52 +0800 Subject: [PATCH] update files --- static/js/terminal/lru.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/terminal/lru.js b/static/js/terminal/lru.js index 9d0bd7b..5a2dc99 100644 --- a/static/js/terminal/lru.js +++ b/static/js/terminal/lru.js @@ -71,7 +71,7 @@ LRUCache.prototype.put = function (key, value){ * } */ LRUCache.prototype.shift = function (){ - // todo: handle special case when limit == 1 + // todo: handle special case when limit === 1 var entry = this.head; if (entry) {