Skip to content

Commit 58957e4

Browse files
committed
Javadoc
1 parent 459431e commit 58957e4

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ public ReaderInputStream(final Reader reader, final String charsetName, final in
236236
}
237237

238238
/**
239-
* Close the stream. This method will cause the underlying {@link Reader} to be closed.
239+
* Closes the stream. This method will cause the underlying {@link Reader} to be closed.
240240
*
241241
* @throws IOException if an I/O error occurs.
242242
*/
@@ -286,7 +286,7 @@ CharsetEncoder getCharsetEncoder() {
286286
}
287287

288288
/**
289-
* Read a single byte.
289+
* Reads a single byte.
290290
*
291291
* @return either the byte read or {@code -1} if the end of the stream has been reached
292292
* @throws IOException if an I/O error occurs.
@@ -305,7 +305,7 @@ public int read() throws IOException {
305305
}
306306

307307
/**
308-
* Read the specified number of bytes into an array.
308+
* Reads the specified number of bytes into an array.
309309
*
310310
* @param b the byte array to read into
311311
* @return the number of bytes read or {@code -1} if the end of the stream has been reached
@@ -317,7 +317,7 @@ public int read(final byte[] b) throws IOException {
317317
}
318318

319319
/**
320-
* Read the specified number of bytes into an array.
320+
* Reads the specified number of bytes into an array.
321321
*
322322
* @param array the byte array to read into
323323
* @param off the offset to start reading bytes into

0 commit comments

Comments
 (0)