You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2013/03/17 21:10:16 UTC

svn commit: r1457548 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MultiMap.java

Author: tn
Date: Sun Mar 17 20:10:15 2013
New Revision: 1457548

URL: http://svn.apache.org/r1457548
Log:
Fix typos.

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MultiMap.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MultiMap.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MultiMap.java?rev=1457548&r1=1457547&r2=1457548&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MultiMap.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/MultiMap.java Sun Mar 17 20:10:15 2013
@@ -51,7 +51,7 @@ public interface MultiMap<K, V> extends 
      * Other values attached to that key are unaffected.
      * <p>
      * 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.
      * 
      * @param key  the key to remove from
@@ -68,7 +68,7 @@ public interface MultiMap<K, V> extends 
      * Gets the number of keys in this map.
      * <p>
      * 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
      */
@@ -99,7 +99,7 @@ public interface MultiMap<K, V> extends 
      * Checks whether the map contains the value specified.
      * <p>
      * 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
      * @return true if the map contains the value
@@ -129,7 +129,7 @@ public interface MultiMap<K, V> extends 
     /**
      * Removes all values associated with the specified key.
      * <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.
      *
      * @param key  the key to remove values from
@@ -144,9 +144,9 @@ public interface MultiMap<K, V> extends 
     /**
      * Gets a collection containing all the values in the map.
      * <p>
-     * Inplementations typically return a collection containing the combination
+     * Implementations typically return a collection containing the combination
      * 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
      */