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

commit 5d4a5ac88a8979e2093c7879a13b35ff9e7a8780
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Mar 15 10:14:06 2025 -0400

    Javadoc
---
 src/main/java/org/apache/commons/csv/CSVRecord.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/csv/CSVRecord.java 
b/src/main/java/org/apache/commons/csv/CSVRecord.java
index 888f523e..c04725af 100644
--- a/src/main/java/org/apache/commons/csv/CSVRecord.java
+++ b/src/main/java/org/apache/commons/csv/CSVRecord.java
@@ -165,7 +165,7 @@ public final class CSVRecord implements Serializable, 
Iterable<String> {
     /**
      * Returns the comment for this record, if any.
      * Note that comments are attached to the following record.
-     * If there is no following record (i.e. the comment is at EOF),
+     * If there is no following record (that is, the comment is at EOF),
      * then the comment will be ignored.
      *
      * @return the comment for this record, or null if no comment for this 
record is available.
@@ -211,7 +211,7 @@ public final class CSVRecord implements Serializable, 
Iterable<String> {
     /**
      * Checks whether this record has a comment, false otherwise.
      * Note that comments are attached to the following record.
-     * If there is no following record (i.e. the comment is at EOF),
+     * If there is no following record (that is, the comment is at EOF),
      * then the comment will be ignored.
      *
      * @return true if this record has a comment, false otherwise
@@ -237,7 +237,7 @@ public final class CSVRecord implements Serializable, 
Iterable<String> {
     }
 
     /**
-     * Checks whether a given column is mapped, i.e. its name has been defined 
to the parser.
+     * Checks whether a given column is mapped, that is, its name has been 
defined to the parser.
      *
      * @param name
      *            the name of the column to be retrieved.

Reply via email to