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
The following commit(s) were added to refs/heads/master by this push: new 6ddc0834e Javadoc 6ddc0834e is described below commit 6ddc0834e63d0924ae1bca939058ac749214f2fb Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sun Apr 27 10:28:06 2025 -0400 Javadoc --- src/main/java/org/apache/commons/io/input/CharSequenceReader.java | 4 ++-- src/main/java/org/apache/commons/io/input/ReadAheadInputStream.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/io/input/CharSequenceReader.java b/src/main/java/org/apache/commons/io/input/CharSequenceReader.java index 132ec5e78..f50911267 100644 --- a/src/main/java/org/apache/commons/io/input/CharSequenceReader.java +++ b/src/main/java/org/apache/commons/io/input/CharSequenceReader.java @@ -185,7 +185,7 @@ public boolean markSupported() { } /** - * Read a single character. + * Reads a single character. * * @return the next character from the character sequence * or -1 if the end has been reached. @@ -199,7 +199,7 @@ public int read() { } /** - * Read the specified number of characters into the array. + * Reads the specified number of characters into the array. * * @param array The array to store the characters in * @param offset The starting position in the array to store diff --git a/src/main/java/org/apache/commons/io/input/ReadAheadInputStream.java b/src/main/java/org/apache/commons/io/input/ReadAheadInputStream.java index 34ceab0bf..f9a18a5fa 100644 --- a/src/main/java/org/apache/commons/io/input/ReadAheadInputStream.java +++ b/src/main/java/org/apache/commons/io/input/ReadAheadInputStream.java @@ -371,7 +371,7 @@ public int read(final byte[] b, final int offset, int len) throws IOException { } /** - * Read data from underlyingInputStream to readAheadBuffer asynchronously. + * Reads data from underlyingInputStream to readAheadBuffer asynchronously. * * @throws IOException if an I/O error occurs. */