From bdb26ce0ad8e6cc2afe4cf15e78bcd0e876b9b31 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 8 Dec 2024 07:13:40 -0500 Subject: [PATCH] Javadoc: Use the same wording as in Map.put(K, V) --- .../org/apache/commons/collections4/map/MultiKeyMap.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/map/MultiKeyMap.java b/src/main/java/org/apache/commons/collections4/map/MultiKeyMap.java index c39f91e673..3876db2b57 100644 --- a/src/main/java/org/apache/commons/collections4/map/MultiKeyMap.java +++ b/src/main/java/org/apache/commons/collections4/map/MultiKeyMap.java @@ -533,7 +533,7 @@ public MapIterator, V> mapIterator() { } /** - * Stores the value against the specified multi-key. + * Associates the specified value with the specified keys in this map. * * @param key1 the first key * @param key2 the second key @@ -560,7 +560,7 @@ public V put(final K key1, final K key2, final K key3, final K key4, final K key } /** - * Stores the value against the specified multi-key. + * Associates the specified value with the specified keys in this map. * * @param key1 the first key * @param key2 the second key @@ -586,7 +586,7 @@ public V put(final K key1, final K key2, final K key3, final K key4, final V val } /** - * Stores the value against the specified multi-key. + * Associates the specified value with the specified keys in this map. * * @param key1 the first key * @param key2 the second key @@ -611,7 +611,7 @@ public V put(final K key1, final K key2, final K key3, final V value) { } /** - * Stores the value against the specified multi-key. + * Associates the specified value with the specified keys in this map. * * @param key1 the first key * @param key2 the second key