Merge branch 'fix-typo-in-toMap-javadoc'

This commit is contained in:
Benedikt Ritter 2016-06-24 15:24:49 +02:00
commit 03384395a8
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ public static boolean isEquals(final Object array1, final Object array2) {
* <p>This method can be used to initialize:
* <pre>
* // Create a Map mapping colors.
* Map colorMap = MapUtils.toMap(new String[][] {{
* Map colorMap = ArrayUtils.toMap(new String[][] {
* {"RED", "#FF0000"},
* {"GREEN", "#00FF00"},
* {"BLUE", "#0000FF"}});