summaryrefslogtreecommitdiff
path: root/java/io/DataInputStream.java
diff options
context:
space:
mode:
authorAaron M. Renn <arenn@urbanophile.com>1998-11-29 00:34:06 +0000
committerAaron M. Renn <arenn@urbanophile.com>1998-11-29 00:34:06 +0000
commite1949fafc994c6d106ea88712caf0ab2dfd6542f (patch)
tree0e7989ec5cdeea3017b584a88e330113e59f7c2c /java/io/DataInputStream.java
parent5139dcf926c2c74c769184dc0ce3b64abd5378d0 (diff)
downloadclasspath-e1949fafc994c6d106ea88712caf0ab2dfd6542f.tar.gz
Documentation Fix
Diffstat (limited to 'java/io/DataInputStream.java')
-rw-r--r--java/io/DataInputStream.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/io/DataInputStream.java b/java/io/DataInputStream.java
index 089eeb2b2..f705b93cc 100644
--- a/java/io/DataInputStream.java
+++ b/java/io/DataInputStream.java
@@ -372,7 +372,7 @@ readChar() throws EOFException, IOException
* <p>
* As an example, if <code>byte1</code> and <code>byte2</code> represent the first
* and second byte read from the stream respectively, they will be
- * transformed to a <code>short</code. in the following manner:
+ * transformed to a <code>short</code>. in the following manner:
* <p>
* <code>(short)(((byte1 & 0xFF) << 8) | (byte2 & 0xFF)</code>
* <p>