Fix comments for doclets

From-SVN: r38754
This commit is contained in:
Anthony Green 2001-01-06 23:28:40 +00:00 committed by Anthony Green
parent a7c5235271
commit 0e2e89fd2e
8 changed files with 29 additions and 14 deletions

View file

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