You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2022/11/30 16:11:15 UTC

[commons-collections] 02/04: Javadoc comment typo

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

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

commit 23677eb23ed30593aa378cc40097584be104fbfa
Author: aherbert <ah...@apache.org>
AuthorDate: Wed Nov 30 16:00:26 2022 +0000

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

diff --git a/src/main/java/org/apache/commons/collections4/bloomfilter/BitCountProducer.java b/src/main/java/org/apache/commons/collections4/bloomfilter/BitCountProducer.java
index abe4a9345..7ccd8bc92 100644
--- a/src/main/java/org/apache/commons/collections4/bloomfilter/BitCountProducer.java
+++ b/src/main/java/org/apache/commons/collections4/bloomfilter/BitCountProducer.java
@@ -18,7 +18,7 @@ package org.apache.commons.collections4.bloomfilter;
 
 import java.util.function.IntPredicate;
 
-/*
+/**
  * Defines a mapping of index to counts.
  *
  * <p>Note that a BitCountProducer may return duplicate indices and may be unordered.