Fix typos.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1457548 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
dcda42acf5
commit
30748db1e2
|
@ -51,7 +51,7 @@ public interface MultiMap<K, V> extends IterableMap<K, Object> {
|
||||||
* Other values attached to that key are unaffected.
|
* Other values attached to that key are unaffected.
|
||||||
* <p>
|
* <p>
|
||||||
* If the last value for a key is removed, implementations typically
|
* If the last value for a key is removed, implementations typically
|
||||||
* return <code>null</code> from a subsequant <code>get(Object)</code>, however
|
* return <code>null</code> from a subsequent <code>get(Object)</code>, however
|
||||||
* they may choose to return an empty collection.
|
* they may choose to return an empty collection.
|
||||||
*
|
*
|
||||||
* @param key the key to remove from
|
* @param key the key to remove from
|
||||||
|
@ -68,7 +68,7 @@ public interface MultiMap<K, V> extends IterableMap<K, Object> {
|
||||||
* Gets the number of keys in this map.
|
* Gets the number of keys in this map.
|
||||||
* <p>
|
* <p>
|
||||||
* Implementations typically return only the count of keys in the map
|
* Implementations typically return only the count of keys in the map
|
||||||
* This cannot be mandated due to backwards compatability of this interface.
|
* This cannot be mandated due to backwards compatibility of this interface.
|
||||||
*
|
*
|
||||||
* @return the number of key-collection mappings in this map
|
* @return the number of key-collection mappings in this map
|
||||||
*/
|
*/
|
||||||
|
@ -99,7 +99,7 @@ public interface MultiMap<K, V> extends IterableMap<K, Object> {
|
||||||
* Checks whether the map contains the value specified.
|
* Checks whether the map contains the value specified.
|
||||||
* <p>
|
* <p>
|
||||||
* Implementations typically check all collections against all keys for the value.
|
* Implementations typically check all collections against all keys for the value.
|
||||||
* This cannot be mandated due to backwards compatability of this interface.
|
* This cannot be mandated due to backwards compatibility of this interface.
|
||||||
*
|
*
|
||||||
* @param value the value to search for
|
* @param value the value to search for
|
||||||
* @return true if the map contains the value
|
* @return true if the map contains the value
|
||||||
|
@ -129,7 +129,7 @@ public interface MultiMap<K, V> extends IterableMap<K, Object> {
|
||||||
/**
|
/**
|
||||||
* Removes all values associated with the specified key.
|
* Removes all values associated with the specified key.
|
||||||
* <p>
|
* <p>
|
||||||
* Implementations typically return <code>null</code> from a subsequant
|
* Implementations typically return <code>null</code> from a subsequent
|
||||||
* <code>get(Object)</code>, however they may choose to return an empty collection.
|
* <code>get(Object)</code>, however they may choose to return an empty collection.
|
||||||
*
|
*
|
||||||
* @param key the key to remove values from
|
* @param key the key to remove values from
|
||||||
|
@ -144,9 +144,9 @@ public interface MultiMap<K, V> extends IterableMap<K, Object> {
|
||||||
/**
|
/**
|
||||||
* Gets a collection containing all the values in the map.
|
* Gets a collection containing all the values in the map.
|
||||||
* <p>
|
* <p>
|
||||||
* Inplementations typically return a collection containing the combination
|
* Implementations typically return a collection containing the combination
|
||||||
* of values from all keys.
|
* of values from all keys.
|
||||||
* This cannot be mandated due to backwards compatability of this interface.
|
* This cannot be mandated due to backwards compatibility of this interface.
|
||||||
*
|
*
|
||||||
* @return a collection view of the values contained in this map
|
* @return a collection view of the values contained in this map
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue