diff options
Diffstat (limited to 'libjava/java/io/PushbackInputStream.java')
-rw-r--r-- | libjava/java/io/PushbackInputStream.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/java/io/PushbackInputStream.java b/libjava/java/io/PushbackInputStream.java index 778babd..379677d 100644 --- a/libjava/java/io/PushbackInputStream.java +++ b/libjava/java/io/PushbackInputStream.java @@ -263,7 +263,7 @@ public class PushbackInputStream extends FilterInputStream /** * This method pushed back bytes from the passed in array into the * pushback buffer. The bytes from <code>b[offset]</code> to - * <cdoe>b[offset + len]</code> are pushed in reverse order so that + * <code>b[offset + len]</code> are pushed in reverse order so that * the next byte read from the stream after this operation will be * <code>b[offset]</code> followed by <code>b[offset + 1]</code>, * etc. |