You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ki...@apache.org on 2021/05/22 00:28:41 UTC

[commons-collections] 01/03: [COLLECTIONS-786] Fix PassiveExpiringMap documentation

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

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

commit d9fd960179547ae3509dd9b790f5fd0d0f872a59
Author: Vandrewskis <ma...@gmail.com>
AuthorDate: Fri May 21 16:20:39 2021 +0200

    [COLLECTIONS-786] Fix PassiveExpiringMap documentation
---
 .../java/org/apache/commons/collections4/map/PassiveExpiringMap.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/collections4/map/PassiveExpiringMap.java b/src/main/java/org/apache/commons/collections4/map/PassiveExpiringMap.java
index d5432f8..0979fa8 100644
--- a/src/main/java/org/apache/commons/collections4/map/PassiveExpiringMap.java
+++ b/src/main/java/org/apache/commons/collections4/map/PassiveExpiringMap.java
@@ -44,7 +44,7 @@ import java.util.concurrent.TimeUnit;
  * </p>
  * <p>
  * When invoking methods that involve accessing the entire map contents (i.e
- * {@link #containsKey(Object)}, {@link #entrySet()}, etc.) this decorator
+ * {@link #containsValue(Object)}, {@link #entrySet()}, etc.) this decorator
  * removes all expired entries prior to actually completing the invocation.
  * </p>
  * <p>