diff options
author | Tom Tromey <tromey@redhat.com> | 2005-05-15 21:09:45 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2005-05-15 21:09:45 +0000 |
commit | 3b523c85c16e70cf883f533b8092de5780eda396 (patch) | |
tree | 2336184784a4467f740141f75081e56d19dc3f15 /libjava/java | |
parent | d7f35e48329fbcc852d3f12a3a3ed68dead1f0e7 (diff) | |
download | gcc-3b523c85c16e70cf883f533b8092de5780eda396.zip gcc-3b523c85c16e70cf883f533b8092de5780eda396.tar.gz gcc-3b523c85c16e70cf883f533b8092de5780eda396.tar.bz2 |
* java/lang/String.java (startsWith): Fixed javadoc.
From-SVN: r99746
Diffstat (limited to 'libjava/java')
-rw-r--r-- | libjava/java/lang/String.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/java/lang/String.java b/libjava/java/lang/String.java index bc69ead..f0d3991 100644 --- a/libjava/java/lang/String.java +++ b/libjava/java/lang/String.java @@ -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 |