From a655041bdd729ef08dae91aa2295cc4e9b6f6c4b Mon Sep 17 00:00:00 2001 From: Brian Gough Date: Wed, 11 Mar 2015 15:57:33 +0000 Subject: [PATCH] fix typo in iterator for cache object --- services/spelling/app/coffee/ASpell.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/spelling/app/coffee/ASpell.coffee b/services/spelling/app/coffee/ASpell.coffee index ae94593b4a..9b051c6390 100644 --- a/services/spelling/app/coffee/ASpell.coffee +++ b/services/spelling/app/coffee/ASpell.coffee @@ -35,7 +35,7 @@ class ASpellRunner # update the cache after processing all words, to avoid cache # changing while we use it - for k, v in addToCache + for k, v of addToCache cache.set(k, v) logger.log hits: hits, total: words.length, hitrate: hits/words.length, "cache hit rate"