From a12c3e4653b5c787867df3fc942e3f92126f8ce1 Mon Sep 17 00:00:00 2001 From: jdiaz Date: Sat, 15 Dec 2018 23:39:52 -0600 Subject: [PATCH] Fixes hyperloglog hash function comment block description --- src/hyperloglog.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hyperloglog.c b/src/hyperloglog.c index ba3a3ab60..440df4c61 100644 --- a/src/hyperloglog.c +++ b/src/hyperloglog.c @@ -36,9 +36,9 @@ /* The Redis HyperLogLog implementation is based on the following ideas: * - * * The use of a 64 bit hash function as proposed in [1], in order to don't - * limited to cardinalities up to 10^9, at the cost of just 1 additional - * bit per register. + * * The use of a 64 bit hash function as proposed in [1], in order to estimate + * cardinalities larger than 10^9, at the cost of just 1 additional bit per + * register. * * The use of 16384 6-bit registers for a great level of accuracy, using * a total of 12k per key. * * The use of the Redis string data type. No new type is introduced.