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/PipedReader.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/PipedReader.java')
-rw-r--r-- | libjava/java/io/PipedReader.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/java/io/PipedReader.java b/libjava/java/io/PipedReader.java index af37595..8047d55 100644 --- a/libjava/java/io/PipedReader.java +++ b/libjava/java/io/PipedReader.java @@ -197,7 +197,7 @@ public class PipedReader extends Reader /** * This method reads chars from the stream into a caller supplied buffer. * It starts storing chars at position <code>offset</code> into the buffer and - * reads a maximum of <cod>>len</code> chars. Note that this method can actually + * reads a maximum of <code>len</code> chars. Note that this method can actually * read fewer than <code>len</code> chars. The actual number of chars read is * returned. A -1 is returned to indicated that no chars can be read * because the end of the stream was reached. If the stream is already @@ -228,7 +228,7 @@ public class PipedReader extends Reader /** * This method reads characters from the stream into a caller supplied buffer. * It starts storing chars at position <code>offset</code> into the buffer and - * reads a maximum of <cod>>len</code> chars. Note that this method can actually + * reads a maximum of <code>len</code> chars. Note that this method can actually * read fewer than <code>len</code> chars. The actual number of chars read is * returned. A -1 is returned to indicated that no chars can be read * because the end of the stream was reached - ie close() was called on the |