This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-collections.git


The following commit(s) were added to refs/heads/master by this push:
     new deda8ffe6 Javadoc
deda8ffe6 is described below

commit deda8ffe694f71ee0c597a1b087421ccb24a8689
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jun 23 12:03:30 2024 -0400

    Javadoc
---
 .../java/org/apache/commons/collections4/bloomfilter/package-info.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 4a3d10e13..9305fbcfb 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
@@ -57,7 +57,7 @@
  *     <li><em>extractor</em> - The extractors are {@link 
FunctionalInterface}s that are conceptually iterators on a bit map, an 
<em>index</em>, or a
  *     collection of <em>cells</em>, 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<X>} argument (e.g. {@code 
processBitMaps(LongPredicate)} or {@code processIndicies(IntPredicate)}).
+ *     {@code Predicate<X>} argument (e.g. {@link 
BitMapExtractor#processBitMaps()} 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. </li>
  * </ul>

Reply via email to