Skip to content

Commit 6ddc083

Browse files
committed
Javadoc
1 parent 6caa7c3 commit 6ddc083

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/org/apache/commons/io/input/CharSequenceReader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ public boolean markSupported() {
185185
}
186186

187187
/**
188-
* Read a single character.
188+
* Reads a single character.
189189
*
190190
* @return the next character from the character sequence
191191
* or -1 if the end has been reached.
@@ -199,7 +199,7 @@ public int read() {
199199
}
200200

201201
/**
202-
* Read the specified number of characters into the array.
202+
* Reads the specified number of characters into the array.
203203
*
204204
* @param array The array to store the characters in
205205
* @param offset The starting position in the array to store

src/main/java/org/apache/commons/io/input/ReadAheadInputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ public int read(final byte[] b, final int offset, int len) throws IOException {
371371
}
372372

373373
/**
374-
* Read data from underlyingInputStream to readAheadBuffer asynchronously.
374+
* Reads data from underlyingInputStream to readAheadBuffer asynchronously.
375375
*
376376
* @throws IOException if an I/O error occurs.
377377
*/

0 commit comments

Comments
 (0)