Skip to content

Commit bdb26ce

Browse files
committed
Javadoc: Use the same wording as in Map.put(K, V)
1 parent bfc30ef commit bdb26ce

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/apache/commons/collections4/map/MultiKeyMap.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ public MapIterator<MultiKey<? extends K>, V> mapIterator() {
533533
}
534534

535535
/**
536-
* Stores the value against the specified multi-key.
536+
* Associates the specified value with the specified keys in this map.
537537
*
538538
* @param key1 the first key
539539
* @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
560560
}
561561

562562
/**
563-
* Stores the value against the specified multi-key.
563+
* Associates the specified value with the specified keys in this map.
564564
*
565565
* @param key1 the first key
566566
* @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
586586
}
587587

588588
/**
589-
* Stores the value against the specified multi-key.
589+
* Associates the specified value with the specified keys in this map.
590590
*
591591
* @param key1 the first key
592592
* @param key2 the second key
@@ -611,7 +611,7 @@ public V put(final K key1, final K key2, final K key3, final V value) {
611611
}
612612

613613
/**
614-
* Stores the value against the specified multi-key.
614+
* Associates the specified value with the specified keys in this map.
615615
*
616616
* @param key1 the first key
617617
* @param key2 the second key

0 commit comments

Comments
 (0)