Skip to content

Commit e1c13f8

Browse files
author
Simon Prickett
authored
Fixed erroneous reference to Top-K (#2158)
1 parent f269319 commit e1c13f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/count-min-sketch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ async function countMinSketch() {
1515
// https://oss.redis.com/redisbloom/CountMinSketch_Commands/#cmsinitbyprob
1616
try {
1717
await client.cms.initByProb('mycms', 0.001, 0.01);
18-
console.log('Reserved Top K.');
18+
console.log('Initialized Count-Min Sketch.');
1919
} catch (e) {
2020
console.log('Error, maybe RedisBloom is not installed?:');
2121
console.log(e);

0 commit comments

Comments
 (0)