Index: java/io/DataInput.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/io/DataInput.java,v retrieving revision 1.13 diff -u -r1.13 DataInput.java --- java/io/DataInput.java 8 Apr 2004 15:04:37 -0000 1.13 +++ java/io/DataInput.java 17 Apr 2004 17:24:46 -0000 @@ -380,7 +380,7 @@ * * Note that all characters are encoded in the method that requires the * fewest number of bytes with the exception of the character with the - * value of \u0000 which is encoded as two bytes. + * value of \<llll>u0000 which is encoded as two bytes. * This is a modification of the UTF standard used to prevent C language * style NUL values from appearing in the byte stream. *

Index: java/io/File.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/io/File.java,v retrieving revision 1.39 diff -u -r1.39 File.java --- java/io/File.java 3 Mar 2004 21:20:48 -0000 1.39 +++ java/io/File.java 17 Apr 2004 17:24:46 -0000 @@ -207,7 +207,7 @@ * the path of this File object if an only if that file * does not already exist. *

- * A SecurityManagercheckWrite check is done prior + * A SecurityManager.checkWrite check is done prior * to performing this action. * * @return true if the file was created, false if Index: java/io/InputStream.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/io/InputStream.java,v retrieving revision 1.7 diff -u -r1.7 InputStream.java --- java/io/InputStream.java 8 Apr 2004 15:04:37 -0000 1.7 +++ java/io/InputStream.java 17 Apr 2004 17:24:46 -0000 @@ -117,7 +117,7 @@ * point. *

* This method always returns false in this class, but - * subclasses can override this method to return true + * subclasses can override this method to return true * if they support mark/reset functionality. * * @return true if mark/reset functionality is Index: java/io/InputStreamReader.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/io/InputStreamReader.java,v retrieving revision 1.15 diff -u -r1.15 InputStreamReader.java --- java/io/InputStreamReader.java 8 Apr 2004 15:04:37 -0000 1.15 +++ java/io/InputStreamReader.java 17 Apr 2004 17:24:46 -0000 @@ -57,18 +57,18 @@ * Here is a list of standard encoding names that may be available: *

*

*

* It is recommended that applications do not use Index: java/io/PushbackInputStream.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/io/PushbackInputStream.java,v retrieving revision 1.12 diff -u -r1.12 PushbackInputStream.java --- java/io/PushbackInputStream.java 24 May 2003 03:35:11 -0000 1.12 +++ java/io/PushbackInputStream.java 17 Apr 2004 17:24:47 -0000 @@ -263,7 +263,7 @@ /** * This method pushed back bytes from the passed in array into the * pushback buffer. The bytes from b[offset] to - * b[offset + len] are pushed in reverse order so that + * b[offset + len] are pushed in reverse order so that * the next byte read from the stream after this operation will be * b[offset] followed by b[offset + 1], * etc. Index: java/io/RandomAccessFile.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/io/RandomAccessFile.java,v retrieving revision 1.37 diff -u -r1.37 RandomAccessFile.java --- java/io/RandomAccessFile.java 8 Apr 2004 20:04:12 -0000 1.37 +++ java/io/RandomAccessFile.java 17 Apr 2004 17:24:47 -0000 @@ -318,12 +318,12 @@ * significant byte first (i.e., "big endian") regardless of the native * host byte ordering. *

- * As an example, if byte1 and code{byte2 represent + * As an example, if byte1 and byte2 represent * the first * and second byte read from the stream respectively, they will be * transformed to a char in the following manner: *

- * (char)(((byte1 & 0xFF) << 8) | (byte2 & 0xFF) + * (char)(((byte1 & 0xFF) << 8) | (byte2 & 0xFF) *

* This method can read a char written by an object * implementing the @@ -539,12 +539,12 @@ * significant byte first (i.e., "big endian") regardless of the native * host byte ordering. *

- * As an example, if byte1 and code{byte2 + * As an example, if byte1 and byte2 * represent the first * and second byte read from the stream respectively, they will be * transformed to a short in the following manner: *

- * (short)(((byte1 & 0xFF) << 8) | (byte2 & 0xFF) + * (short)(((byte1 & 0xFF) << 8) | (byte2 & 0xFF) *

* The value returned is in the range of -32768 to 32767. *