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

garydgregory 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 4329beecf Fix Javadoc
4329beecf is described below

commit 4329beecfb4947bb7b8ec7418a7033dde41181a2
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jun 27 13:21:41 2026 +0000

    Fix Javadoc
---
 src/main/java/org/apache/commons/collections4/Bag.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/collections4/Bag.java 
b/src/main/java/org/apache/commons/collections4/Bag.java
index c1e662d7e..874d75be5 100644
--- a/src/main/java/org/apache/commons/collections4/Bag.java
+++ b/src/main/java/org/apache/commons/collections4/Bag.java
@@ -180,7 +180,7 @@ public interface Bag<E> extends Collection<E> {
      * Remove any members of the bag that are not in the given
      * collection, respecting cardinality.  That is, if the given
      * collection {@code coll} contains {@code n} copies of a
-     * given object and the bag has {@code m &gt; n} copies, then
+     * given object and the bag has {@code m > n} copies, then
      * delete {@code m - n} copies from the bag.  In addition, if
      * {@code e} is an object in the bag but
      * {@code !coll.contains(e)}, then remove {@code e} and any

Reply via email to