diff options
author | Anthony Green <green@redhat.com> | 2001-01-06 23:28:40 +0000 |
---|---|---|
committer | Anthony Green <green@gcc.gnu.org> | 2001-01-06 23:28:40 +0000 |
commit | 0e2e89fd2e117555f71be7a28e41f5f7663c3395 (patch) | |
tree | 0941167f6a15cc7309347da34644f836f6ad051a /libjava/java/io/PushbackReader.java | |
parent | a7c523527123600f9628305940023031af8ece90 (diff) | |
download | gcc-0e2e89fd2e117555f71be7a28e41f5f7663c3395.zip gcc-0e2e89fd2e117555f71be7a28e41f5f7663c3395.tar.gz gcc-0e2e89fd2e117555f71be7a28e41f5f7663c3395.tar.bz2 |
Fix comments for doclets
From-SVN: r38754
Diffstat (limited to 'libjava/java/io/PushbackReader.java')
-rw-r--r-- | libjava/java/io/PushbackReader.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/java/io/PushbackReader.java b/libjava/java/io/PushbackReader.java index be8dba4..6aeda79 100644 --- a/libjava/java/io/PushbackReader.java +++ b/libjava/java/io/PushbackReader.java @@ -1,5 +1,5 @@ /* PushbackReader.java -- An character stream that can unread chars - Copyright (C) 1998, 2000 Free Software Foundation, Inc. + Copyright (C) 1998, 2000, 2001 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -391,7 +391,7 @@ unread(char[] buf) throws IOException /** * This method pushed back chars from the passed in array into the pushback - * buffer. The chars from <code>buf[offset]</code> to <cdoe>buf[offset + len]</code> + * buffer. The chars from <code>buf[offset]</code> to <code>buf[offset + len]</code> * are pushed in reverse order so that the next char read from the stream * after this operation will be <code>buf[offset]</code> followed by * <code>buf[offset + 1]</code>, etc. |