summaryrefslogtreecommitdiff
path: root/java/io/LineNumberInputStream.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2003-03-23 10:39:02 +0000
committerMichael Koch <konqueror@gmx.de>2003-03-23 10:39:02 +0000
commitfdde353e45190ae960618bd3b9660fe9a07d1bd9 (patch)
treebb8965e5c0d36b3c53b0e55b092aae204299e10c /java/io/LineNumberInputStream.java
parent197374f8402cd80fcf5a9609b3590f395c3604e0 (diff)
downloadclasspath-fdde353e45190ae960618bd3b9660fe9a07d1bd9.tar.gz
2003-03-23 Michael Koch <konqueror@gmx.de>
* java/io/ByteArrayOutputStream.java (size): Fixed @see tag. * java/io/CharArrayWriter.java (size): Fixed @see tag. * java/io/DataInputStream.java (readUTF): Fixed typo in @return tag. * java/io/DataOutputStream.java (writeFloat): Fixed @see tag. (writeDouble): Fixed @see tag. * java/io/FilePermission.java (FilePermission): Replaced @XXX with FIXME to make javadoc happy. * java/io/LineNumberInputStream.java (LineNumberInputStream): Replaced @code with html tags. (getLineNumber): Fixed typo @return tag. * java/io/LineNumberReader.java (getLineNumber): Fixed typo @return tag. * java/io/PushbackReader.java (PushbackReader): Replaced @code with @param. * java/io/RandomAccessFile.java (writeInt): Fixed @see tag. (writeDouble): Fixed @see tag. * java/io/StreamTokenizer.java (writeDouble): Fixed @see tag.
Diffstat (limited to 'java/io/LineNumberInputStream.java')
-rw-r--r--java/io/LineNumberInputStream.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/io/LineNumberInputStream.java b/java/io/LineNumberInputStream.java
index 4a4d68a3d..ee0ce2c79 100644
--- a/java/io/LineNumberInputStream.java
+++ b/java/io/LineNumberInputStream.java
@@ -57,7 +57,7 @@ package java.io;
* stream, it has the same mark/reset functionality as the underlying
* stream. The <code>mark()</code> and <code>reset()</code> methods
* in this class handle line numbers correctly. Calling
- * @code{reset()} resets the line number to the point at which
+ * <code>reset()</code> resets the line number to the point at which
* <code>mark()</code> was called if the subordinate stream supports
* that functionality.
* <p>
@@ -119,7 +119,7 @@ public class LineNumberInputStream extends FilterInputStream
/**
* This method returns the current line number
*
- * @returns The current line number
+ * @return The current line number
*/
public int getLineNumber()
{