This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-io.git
commit 58957e481aec0f24930449d71b01bc1528d2523c Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Apr 12 10:41:42 2023 -0400 Javadoc --- src/main/java/org/apache/commons/io/input/ReaderInputStream.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/io/input/ReaderInputStream.java b/src/main/java/org/apache/commons/io/input/ReaderInputStream.java index a9e479c8..88c7d3e1 100644 --- a/src/main/java/org/apache/commons/io/input/ReaderInputStream.java +++ b/src/main/java/org/apache/commons/io/input/ReaderInputStream.java @@ -236,7 +236,7 @@ public class ReaderInputStream extends InputStream { } /** - * Close the stream. This method will cause the underlying {@link Reader} to be closed. + * Closes the stream. This method will cause the underlying {@link Reader} to be closed. * * @throws IOException if an I/O error occurs. */ @@ -286,7 +286,7 @@ public class ReaderInputStream extends InputStream { } /** - * Read a single byte. + * Reads a single byte. * * @return either the byte read or {@code -1} if the end of the stream has been reached * @throws IOException if an I/O error occurs. @@ -305,7 +305,7 @@ public class ReaderInputStream extends InputStream { } /** - * Read the specified number of bytes into an array. + * Reads the specified number of bytes into an array. * * @param b the byte array to read into * @return the number of bytes read or {@code -1} if the end of the stream has been reached @@ -317,7 +317,7 @@ public class ReaderInputStream extends InputStream { } /** - * Read the specified number of bytes into an array. + * Reads the specified number of bytes into an array. * * @param array the byte array to read into * @param off the offset to start reading bytes into