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-csv.git


The following commit(s) were added to refs/heads/master by this push:
     new 346e2175 Javadoc
346e2175 is described below

commit 346e217559379872d0b439c221f851e06d8d8ce7
Author: Gary Gregory <garydgreg...@users.noreply.github.com>
AuthorDate: Wed Aug 30 09:00:53 2023 -0400

    Javadoc
---
 .../java/org/apache/commons/csv/ExtendedBufferedReader.java    | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java 
b/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java
index 89e63e3a..429b07cb 100644
--- a/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java
+++ b/src/main/java/org/apache/commons/csv/ExtendedBufferedReader.java
@@ -41,13 +41,13 @@ final class ExtendedBufferedReader extends BufferedReader {
     /** The count of EOLs (CR/LF/CRLF) seen so far */
     private long eolCounter;
 
-    /** The position, which is number of characters read so far */
+    /** The position, which is the number of characters read so far */
     private long position;
 
     private boolean closed;
 
     /**
-     * Created extended buffered reader using default buffer-size
+     * Constructs a new instance using the default buffer size.
      */
     ExtendedBufferedReader(final Reader reader) {
         super(reader);
@@ -107,7 +107,7 @@ final class ExtendedBufferedReader extends BufferedReader {
 
     /**
      * Returns the next character in the current reader without consuming it. 
So the next call to {@link #read()} will
-     * still return this value. Does not affect line number or last character.
+     * still return this value. Does not affect the line number or the last 
character.
      *
      * @return the next character
      *
@@ -125,7 +125,7 @@ final class ExtendedBufferedReader extends BufferedReader {
     /**
      * Populates the buffer with the next {@code buf.length} characters in the
      * current reader without consuming them. The next call to {@link #read()} 
will
-     * still return the next value. This doesn't affect line number or last
+     * still return the next value. This doesn't affect the line number or the 
last
      * character.
      *
      * @param buf the buffer to fill for the look ahead.
@@ -199,7 +199,7 @@ final class ExtendedBufferedReader extends BufferedReader {
 
     /**
      * Gets the next line, dropping the line terminator(s). This method should 
only be called when processing a
-     * comment, otherwise information can be lost.
+     * comment, otherwise, information can be lost.
      * <p>
      * Increments {@link #eolCounter} and updates {@link #position}.
      * </p>

Reply via email to