aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/io
diff options
context:
space:
mode:
authorAnthony Green <green@redhat.com>2001-01-06 23:28:40 +0000
committerAnthony Green <green@gcc.gnu.org>2001-01-06 23:28:40 +0000
commit0e2e89fd2e117555f71be7a28e41f5f7663c3395 (patch)
tree0941167f6a15cc7309347da34644f836f6ad051a /libjava/java/io
parenta7c523527123600f9628305940023031af8ece90 (diff)
downloadgcc-0e2e89fd2e117555f71be7a28e41f5f7663c3395.zip
gcc-0e2e89fd2e117555f71be7a28e41f5f7663c3395.tar.gz
gcc-0e2e89fd2e117555f71be7a28e41f5f7663c3395.tar.bz2
Fix comments for doclets
From-SVN: r38754
Diffstat (limited to 'libjava/java/io')
-rw-r--r--libjava/java/io/DataInputStream.java4
-rw-r--r--libjava/java/io/ObjectStreamClass.java4
-rw-r--r--libjava/java/io/PipedInputStream.java4
-rw-r--r--libjava/java/io/PipedReader.java4
-rw-r--r--libjava/java/io/PushbackReader.java4
5 files changed, 10 insertions, 10 deletions
diff --git a/libjava/java/io/DataInputStream.java b/libjava/java/io/DataInputStream.java
index 2bcf88d..643f099 100644
--- a/libjava/java/io/DataInputStream.java
+++ b/libjava/java/io/DataInputStream.java
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998, 1999, 2000 Free Software Foundation
+/* Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation
This file is part of libgcj.
@@ -534,7 +534,7 @@ public class DataInputStream extends FilterInputStream implements DataInput
* significant byte first (i.e., "big endian") regardless of the native
* host byte ordering.
* <p>
- * As an example, if <code>byte1</code> and code{byte2</code>
+ * 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 an <code>int</code> in
* the following manner:
diff --git a/libjava/java/io/ObjectStreamClass.java b/libjava/java/io/ObjectStreamClass.java
index 085c72b..d7306f8 100644
--- a/libjava/java/io/ObjectStreamClass.java
+++ b/libjava/java/io/ObjectStreamClass.java
@@ -1,6 +1,6 @@
/* ObjectStreamClass.java -- Class used to write class information
about serialized objects.
- Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
+ Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -186,7 +186,7 @@ public class ObjectStreamClass implements Serializable
// Returns the <code>ObjectStreamClass</code> that represents the
// class that is the superclass of the class this
- // <code>ObjectStreamClass</cdoe> represents. If the superclass is
+ // <code>ObjectStreamClass</code> represents. If the superclass is
// not Serializable, null is returned.
ObjectStreamClass getSuper ()
{
diff --git a/libjava/java/io/PipedInputStream.java b/libjava/java/io/PipedInputStream.java
index f8de8b0..328a1c0 100644
--- a/libjava/java/io/PipedInputStream.java
+++ b/libjava/java/io/PipedInputStream.java
@@ -209,7 +209,7 @@ public class PipedInputStream extends InputStream
/**
* This method reads bytes from the stream into a caller supplied buffer.
* It starts storing bytes at position <code>offset</code> into the buffer and
- * reads a maximum of <cod>>len</code> bytes. Note that this method can actually
+ * reads a maximum of <code>len</code> bytes. Note that this method can actually
* read fewer than <code>len</code> bytes. The actual number of bytes read is
* returned. A -1 is returned to indicated that no bytes can be read
* because the end of the stream was reached. If the stream is already
@@ -240,7 +240,7 @@ public class PipedInputStream extends InputStream
/**
* This method reads bytes from the stream into a caller supplied buffer.
* It starts storing bytes at position <code>offset</code> into the buffer and
- * reads a maximum of <cod>>len</code> bytes. Note that this method can actually
+ * reads a maximum of <code>len</code> bytes. Note that this method can actually
* read fewer than <code>len</code> bytes. The actual number of bytes read is
* returned. A -1 is returned to indicated that no bytes can be read
* because the end of the stream was reached - ie close() was called on the
diff --git a/libjava/java/io/PipedReader.java b/libjava/java/io/PipedReader.java
index af37595..8047d55 100644
--- a/libjava/java/io/PipedReader.java
+++ b/libjava/java/io/PipedReader.java
@@ -197,7 +197,7 @@ public class PipedReader extends Reader
/**
* This method reads chars from the stream into a caller supplied buffer.
* It starts storing chars at position <code>offset</code> into the buffer and
- * reads a maximum of <cod>>len</code> chars. Note that this method can actually
+ * reads a maximum of <code>len</code> chars. Note that this method can actually
* read fewer than <code>len</code> chars. The actual number of chars read is
* returned. A -1 is returned to indicated that no chars can be read
* because the end of the stream was reached. If the stream is already
@@ -228,7 +228,7 @@ public class PipedReader extends Reader
/**
* This method reads characters from the stream into a caller supplied buffer.
* It starts storing chars at position <code>offset</code> into the buffer and
- * reads a maximum of <cod>>len</code> chars. Note that this method can actually
+ * reads a maximum of <code>len</code> chars. Note that this method can actually
* read fewer than <code>len</code> chars. The actual number of chars read is
* returned. A -1 is returned to indicated that no chars can be read
* because the end of the stream was reached - ie close() was called on the
diff --git a/libjava/java/io/PushbackReader.java b/libjava/java/io/PushbackReader.java
index be8dba4..6aeda79 100644
--- a/libjava/java/io/PushbackReader.java
+++ b/libjava/java/io/PushbackReader.java
@@ -1,5 +1,5 @@
/* PushbackReader.java -- An character stream that can unread chars
- Copyright (C) 1998, 2000 Free Software Foundation, Inc.
+ Copyright (C) 1998, 2000, 2001 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -391,7 +391,7 @@ unread(char[] buf) throws IOException
/**
* This method pushed back chars from the passed in array into the pushback
- * buffer. The chars from <code>buf[offset]</code> to <cdoe>buf[offset + len]</code>
+ * buffer. The chars from <code>buf[offset]</code> to <code>buf[offset + len]</code>
* are pushed in reverse order so that the next char read from the stream
* after this operation will be <code>buf[offset]</code> followed by
* <code>buf[offset + 1]</code>, etc.