A simple spelling fix for ArrayUtils JavaDoc on the clone(Object[] array) method

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137759 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Tim O'Brien 2004-01-25 00:09:10 +00:00
parent a9d8e8770a
commit 8410469603
1 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@
* @author <a href="mailto:equinus100@hotmail.com">Ashwin S</a>
* @author Fredrik Westermarck
* @since 2.0
* @version $Id: ArrayUtils.java,v 1.33 2004/01/19 23:24:07 fredrik Exp $
* @version $Id: ArrayUtils.java,v 1.34 2004/01/25 00:09:10 tobrien Exp $
*/
public class ArrayUtils {
@ -295,7 +295,7 @@ public static Map toMap(final Object[] array) {
* <p>Shallow clones an array returning a typecast result and handling
* <code>null</code>.</p>
*
* <p>The objecs in the array are not cloned, thus there is no special
* <p>The objects in the array are not cloned, thus there is no special
* handling for multi-dimensional arrays.</p>
*
* <p>This method returns <code>null</code> if <code>null</code> array input.</p>