From e1c13f874a764077f24559de6414edad1dd66ffb Mon Sep 17 00:00:00 2001 From: Simon Prickett Date: Wed, 15 Jun 2022 20:18:36 +0100 Subject: [PATCH] Fixed erroneous reference to Top-K (#2158) --- examples/count-min-sketch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/count-min-sketch.js b/examples/count-min-sketch.js index 63c8808cc2..7deb644355 100644 --- a/examples/count-min-sketch.js +++ b/examples/count-min-sketch.js @@ -15,7 +15,7 @@ async function countMinSketch() { // https://oss.redis.com/redisbloom/CountMinSketch_Commands/#cmsinitbyprob try { await client.cms.initByProb('mycms', 0.001, 0.01); - console.log('Reserved Top K.'); + console.log('Initialized Count-Min Sketch.'); } catch (e) { console.log('Error, maybe RedisBloom is not installed?:'); console.log(e);