diff --git a/solr/core/src/java/org/apache/solr/util/hll/HLL.java b/solr/core/src/java/org/apache/solr/util/hll/HLL.java
index 4210b18c4f2..432401bfc0f 100644
--- a/solr/core/src/java/org/apache/solr/util/hll/HLL.java
+++ b/solr/core/src/java/org/apache/solr/util/hll/HLL.java
@@ -26,12 +26,12 @@ import com.carrotsearch.hppc.cursors.LongCursor;
/**
* A probabilistic set of hashed long
elements. Useful for computing
- * the approximate cardinality of a stream of data in very small storage.
expthresh value | Meaning |
---|---|
-1 | - *Promote at whatever cutoff makes sense for optimal memory usage. ('auto' mode) | - *
0 | - *Skip EXPLICIT representation in hierarchy. |
- *
1-18 | - *Promote at 2expthresh - 1 cardinality | - *
HLL(log2m, regwidth, -1, true, HLLType.EMPTY)
.
*
@@ -597,7 +580,7 @@ public class HLL implements Cloneable {
// Clear
/**
* Clears the HLL. The HLL will have cardinality zero and will act as if no
- * elements have been added.
+ * elements have been added.
*
* NOTE: Unlike {@link #addRaw(long)}, clear
does NOT handle
* transitions between {@link HLLType}s - a probabilistic type will remain
@@ -945,7 +928,7 @@ public class HLL implements Cloneable {
/**
* Deserializes the HLL (in {@link #toBytes(ISchemaVersion)} format) serialized
- * into bytes
.
+ * into bytes
.
*
* @param bytes the serialized bytes of new HLL
* @return the deserialized HLL. This will never be null
.
diff --git a/solr/core/src/java/org/apache/solr/util/hll/IWordDeserializer.java b/solr/core/src/java/org/apache/solr/util/hll/IWordDeserializer.java
index 7a7bf1c3f0a..7e374259636 100644
--- a/solr/core/src/java/org/apache/solr/util/hll/IWordDeserializer.java
+++ b/solr/core/src/java/org/apache/solr/util/hll/IWordDeserializer.java
@@ -28,7 +28,7 @@ public interface IWordDeserializer {
long readWord();
/**
- * Returns the number of words that could be encoded in the sequence.
+ * Returns the number of words that could be encoded in the sequence.
*
* NOTE: the sequence that was encoded may be shorter than the value this
* method returns due to padding issues within bytes. This guarantees