Skip to content

Commit

Permalink
Fixed erroneous reference to Top-K (#2158)
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Prickett authored Jun 15, 2022
1 parent f269319 commit e1c13f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/count-min-sketch.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit e1c13f8

Please sign in to comment.