diff --git a/src/main/java/org/apache/commons/collections4/bloomfilter/package-info.java b/src/main/java/org/apache/commons/collections4/bloomfilter/package-info.java index 1ceb816479..4a3d10e139 100644 --- a/src/main/java/org/apache/commons/collections4/bloomfilter/package-info.java +++ b/src/main/java/org/apache/commons/collections4/bloomfilter/package-info.java @@ -21,7 +21,7 @@ *

Background

* *

The Bloom filter is a probabilistic data structure that indicates where things are not. Conceptually it is a bit - * vector or BitMap. You create a Bloom filter by creating hashes and converting those to enabled bits in the map. Multiple + * vector or bit map. You create a Bloom filter by creating hashes and converting those to enabled bits in the map. Multiple * Bloom filters may be merged together into one Bloom filter. It is possible to test if a filter {@code B} has merged * into another filter {@code A} by verifying that {@code (A & B) == B}.

* @@ -33,7 +33,7 @@ * operation.

* *

Some Bloom filters (e.g. {@link CountingBloomFilter}) use counters rather than bits. In this case each counter - * is called a {@code cell}.

+ * is called a cell.

* *

BloomFilter

* @@ -44,19 +44,19 @@ *

Nomenclature

* *