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.
* 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