aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/io/Reader.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/io/Reader.java')
-rw-r--r--libjava/java/io/Reader.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/java/io/Reader.java b/libjava/java/io/Reader.java
index be87949..18481ac 100644
--- a/libjava/java/io/Reader.java
+++ b/libjava/java/io/Reader.java
@@ -103,7 +103,7 @@ public abstract class Reader
*
* @param buf The array into which the chars read should be stored
* @param offset The offset into the array to start storing chars
- * @param len The requested number of chars to read
+ * @param count The requested number of chars to read
*
* @return The actual number of chars read, or -1 if end of stream.
*
@@ -189,7 +189,7 @@ public abstract class Reader
* <code>reset()</code> method is called, then the mark is invalid and the
* stream object instance is not required to remember the mark.
*
- * @param readlimit The number of chars that can be read before the mark
+ * @param readLimit The number of chars that can be read before the mark
* becomes invalid
*
* @exception IOException If an error occurs such as mark not being
@@ -243,7 +243,7 @@ public abstract class Reader
* override this method to provide a more efficient implementation where
* one exists.
*
- * @param num_chars The requested number of chars to skip
+ * @param count The requested number of chars to skip
*
* @return The actual number of chars skipped.
*