You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2006/07/14 00:05:01 UTC

svn commit: r421712 - in /jakarta/commons/proper/collections/trunk: project.xml src/java/org/apache/commons/collections/keyvalue/MultiKey.java

Author: scolebourne
Date: Thu Jul 13 15:05:01 2006
New Revision: 421712

URL: http://svn.apache.org/viewvc?rev=421712&view=rev
Log:
Fix MultiKey spelling
COLLECTIONS-216, from Hendrik Maryns

Modified:
    jakarta/commons/proper/collections/trunk/project.xml
    jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/keyvalue/MultiKey.java

Modified: jakarta/commons/proper/collections/trunk/project.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/collections/trunk/project.xml?rev=421712&r1=421711&r2=421712&view=diff
==============================================================================
--- jakarta/commons/proper/collections/trunk/project.xml (original)
+++ jakarta/commons/proper/collections/trunk/project.xml Thu Jul 13 15:05:01 2006
@@ -304,6 +304,9 @@
       <name>Berin Loritsch</name>
     </contributor>
     <contributor>
+      <name>Hendrik Maryns</name>
+    </contributor>
+    <contributor>
       <name>Stefano Mazzocchi</name>
     </contributor>
     <contributor>

Modified: jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/keyvalue/MultiKey.java
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/keyvalue/MultiKey.java?rev=421712&r1=421711&r2=421712&view=diff
==============================================================================
--- jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/keyvalue/MultiKey.java (original)
+++ jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/keyvalue/MultiKey.java Thu Jul 13 15:05:01 2006
@@ -1,5 +1,5 @@
 /*
- *  Copyright 2003-2004 The Apache Software Foundation
+ *  Copyright 2003-2004,2006 The Apache Software Foundation
  *
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.
@@ -22,7 +22,7 @@
  * A <code>MultiKey</code> allows multiple map keys to be merged together.
  * <p>
  * The purpose of this class is to avoid the need to write code to handle
- * maps of maps. An example might be the need to lookup a filename by 
+ * maps of maps. An example might be the need to look up a file name by 
  * key and locale. The typical solution might be nested maps. This class
  * can be used instead by creating an instance passing in the key and locale.
  * <p>
@@ -33,7 +33,7 @@
  * MultiKey multiKey = new MultiKey(key, locale);
  * map.put(multiKey, localizedText);
  *
- * // later retireve the localized text
+ * // later retrieve the localized text
  * MultiKey multiKey = new MultiKey(key, locale);
  * String localizedText = (String) map.get(multiKey);
  * </pre>



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org