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
*
*
- * - BitMap - In the {@code bloomfilter} package a BitMap is not a structure but a logical construct. It is conceptualized
+ *
- bit map - In the {@code bloomfilter} package a bit map is not a structure but a logical construct. It is conceptualized
* as an ordered collection of {@code long} values each of which is interpreted as the enabled true/false state of 64 continuous indices. The mapping of
* bits into the {@code long} values is described in the {@link BitMaps} Javadoc.
*
- * - Index - In the {@code bloomfilter} package an Index is a logical collection of {@code int}s specifying the enabled
+ *
- index - In the {@code bloomfilter} package an Index is a logical collection of {@code int}s specifying the enabled
* bits in the bit map.
*
- * - Cell - Some Bloom filters (e.g. {@link CountingBloomFilter}) use counters rather than bits. In the {@code bloomfilter} package
+ *
- cell - Some Bloom filters (e.g. {@link CountingBloomFilter}) use counters rather than bits. In the {@code bloomfilter} package
* Cells are pairs of ints representing an index and a value. They are not {@code Pair} objects.
*
- * - Extractor - The Extractors are {@code FunctionalInterfaces} that are conceptually iterators on a bit map, an {@code Index}, or a
- * collection of {@code Cell}s, with an early termination switch. Extractors have
- * names like {@link BitMapExtractor} or {@code IndexExtractor} and have a {@code processXs} methods that take a
+ *
- extractor - The extractors are {@link FunctionalInterface}s that are conceptually iterators on a bit map, an index, or a
+ * collection of cells, with an early termination switch. Extractors have
+ * names like {@link BitMapExtractor} or {@link IndexExtractor} and have a {@code processXs} methods that take a
* {@code Predicate} argument (e.g. {@code processBitMaps(LongPredicate)} or {@code processIndicies(IntPredicate)}).
* That predicate is expected to process each of the Xs in turn and return {@code true} if the processing should continue
* or {@code false} to stop it.
@@ -110,7 +110,7 @@
* LayeredBloomFilter
*
* The {@link LayeredBloomFilter} extends the Bloom filter by creating layers of Bloom filters that can be queried as a single
- * Filter or as a set of filters. This adds the ability to perform windowing on streams of data.
+ * Filter or as a set of filters. This adds the ability to perform windowing on streams of data.
*
* Shape
*