* java/lang/String.java (startsWith): Fixed javadoc.
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 15 May 2005 21:09:45 +0000 (21:09 +0000)
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 15 May 2005 21:09:45 +0000 (21:09 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99746 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/java/lang/String.java

index 6778d0f..94ab18d 100644 (file)
@@ -1,5 +1,9 @@
 2005-05-15  Tom Tromey  <tromey@redhat.com>
 
+       * java/lang/String.java (startsWith): Fixed javadoc.
+
+2005-05-15  Tom Tromey  <tromey@redhat.com>
+
        PR java/21519:
        * testsuite/libjava.compile/pr21519.java: New file.
        * testsuite/libjava.compile/pr21519.no-link: New file.
index bc69ead..f0d3991 100644 (file)
@@ -676,7 +676,7 @@ public final class String implements Serializable, Comparable, CharSequence
    * Predicate which determines if this String contains the given prefix,
    * beginning comparison at toffset. The result is false if toffset is
    * negative or greater than this.length(), otherwise it is the same as
-   * <code>this.subString(toffset).startsWith(prefix)</code>.
+   * <code>this.substring(toffset).startsWith(prefix)</code>.
    *
    * @param prefix String to compare
    * @param toffset offset for this String where comparison starts