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 8c5df0bf8 Fix Javadoc empty tag and close other tag
8c5df0bf8 is described below

commit 8c5df0bf8eb67b0e3b9cb259a825bb3274eb7d30
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Jun 14 21:23:16 2024 -0400

    Fix Javadoc empty tag and close other tag
---
 src/main/java/org/apache/commons/collections4/SetValuedMap.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/collections4/SetValuedMap.java 
b/src/main/java/org/apache/commons/collections4/SetValuedMap.java
index 07b9b1e32..42c448350 100644
--- a/src/main/java/org/apache/commons/collections4/SetValuedMap.java
+++ b/src/main/java/org/apache/commons/collections4/SetValuedMap.java
@@ -39,7 +39,7 @@ public interface SetValuedMap<K, V> extends MultiValuedMap<K, 
V> {
      * <p>
      * Implementations typically return an empty {@code Set} if no values
      * have been mapped to the key.
-     * <p>
+     * </p>
      *
      * @param key  the key to retrieve
      * @return the {@code Set} of values, implementations should return an
@@ -55,6 +55,7 @@ public interface SetValuedMap<K, V> extends MultiValuedMap<K, 
V> {
      * The returned set <i>may</i> be modifiable, but updates will not be
      * propagated to this set-valued map. In case no mapping was stored for the
      * specified key, an empty, unmodifiable set will be returned.
+     * </p>
      *
      * @param key  the key to remove values from
      * @return the {@code Set} of values removed, implementations should

Reply via email to