From e0684042f1c34ad803f7411bbfcfa871ac575238 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 23 Jun 2024 11:52:59 -0400 Subject: [PATCH] Javadoc --- .../collections4/bloomfilter/package-info.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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

* *