This patch (committed) fixes a typo in the API docs:

2006-07-26  David Gilbert  <[EMAIL PROTECTED]>

        * java/util/Vector.java: Fixed API doc typo.

Regards,

Dave
Index: java/util/Vector.java
===================================================================
RCS file: /sources/classpath/classpath/java/util/Vector.java,v
retrieving revision 1.26
diff -u -r1.26 Vector.java
--- java/util/Vector.java       18 Aug 2005 10:32:56 -0000      1.26
+++ java/util/Vector.java       26 Jul 2006 06:46:43 -0000
@@ -1,5 +1,6 @@
 /* Vector.java -- Class that provides growable arrays.
-   Copyright (C) 1998, 1999, 2000, 2001, 2004, 2005  Free Software Foundation, 
Inc.
+   Copyright (C) 1998, 1999, 2000, 2001, 2004, 2005, 2006,  
+   Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -37,6 +38,7 @@
 
 
 package java.util;
+
 import java.io.IOException;
 import java.io.ObjectOutputStream;
 import java.io.Serializable;
@@ -479,7 +481,7 @@
   }
 
   /**
-   * Removes the first (the lowestindex) occurance of the given object from
+   * Removes the first (the lowest index) occurrence of the given object from
    * the Vector. If such a remove was performed (the object was found), true
    * is returned. If there was no such object, false is returned.
    *

Reply via email to