diff options
author | Tom Tromey <tromey@redhat.com> | 2006-04-10 16:53:50 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2006-04-10 16:53:50 +0000 |
commit | 29586ed038efe19a98abeda9c27378966b56625c (patch) | |
tree | 4cae3cd6f9d6999aa6619071dd988ce88a493655 /java/io | |
parent | f4014ce7a2ff4b3be8e66ab9f8625ea306e6b757 (diff) | |
download | classpath-29586ed038efe19a98abeda9c27378966b56625c.tar.gz |
* java/io/CharArrayWriter.java (append): Javadoc fix.
(append): Likewise.
Diffstat (limited to 'java/io')
-rw-r--r-- | java/io/CharArrayWriter.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/io/CharArrayWriter.java b/java/io/CharArrayWriter.java index 8cbc8aeac..68e693b4a 100644 --- a/java/io/CharArrayWriter.java +++ b/java/io/CharArrayWriter.java @@ -267,7 +267,7 @@ public class CharArrayWriter extends Writer * sequence is wrapped around an input buffer, the results will * depend on the current position and length of that buffer. * - * @param cs the character sequence to append. If seq is null, + * @param cs the character sequence to append. If cs is null, * then the string "null" (the string representation of null) * is appended. * @return a reference to this object. @@ -291,10 +291,10 @@ public class CharArrayWriter extends Writer * output stream underlying this writer, starting and ending at the * specified positions within the sequence. The behaviour of this * method matches the behaviour of writing the result of - * <code>append(seq.subSequence(start,end))</code> when the sequence + * <code>append(cs.subSequence(start,end))</code> when the sequence * is not null. * - * @param cs the character sequence to append. If seq is null, + * @param cs the character sequence to append. If cs is null, * then the string "null" (the string representation of null) * is appended. * @param start the index of the first Unicode character to use from |