show hit rate to 2dp only

This commit is contained in:
Brian Gough 2015-03-12 09:53:58 +00:00
parent b684ed0837
commit ed33cd59b7

View file

@ -38,7 +38,7 @@ class ASpellRunner
for k, v of addToCache
cache.set(k, v)
logger.log hits: hits, total: words.length, hitrate: hits/words.length, "cache hit rate"
logger.log hits: hits, total: words.length, hitrate: (hits/words.length).toFixed(2), "cache hit rate"
callback null, results
getSuggestions: (language, output) ->