Skip to content
This repository was archived by the owner on Jul 7, 2020. It is now read-only.

Commit 65d000e

Browse files
author
abramsm
committed
fix typo
1 parent 94af55c commit 65d000e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/clearspring/analytics/stream/cardinality/HyperLogLog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
public class HyperLogLog implements ICardinality
5656
{
5757
private final static double POW_2_32 = Math.pow(2, 32);
58-
private final static double NEGATIVE_POW_2_32 = - -4294967296.0;
58+
private final static double NEGATIVE_POW_2_32 = -4294967296.0;
5959

6060
private final RegisterSet registerSet;
6161
private final int log2m;

0 commit comments

Comments
 (0)