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 77a19dc6ba3a79a65348681200b5c7fa6550d00a Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Fri Mar 14 21:32:49 2025 -0400 Javadoc --- src/main/java/org/apache/commons/csv/CSVParser.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/java/org/apache/commons/csv/CSVParser.java b/src/main/java/org/apache/commons/csv/CSVParser.java index 8bbb8576..33ae7856 100644 --- a/src/main/java/org/apache/commons/csv/CSVParser.java +++ b/src/main/java/org/apache/commons/csv/CSVParser.java @@ -474,7 +474,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable { private final Token reusableToken = new Token(); /** - * Constructs a new instance using the given {@link CSVFormat} + * Constructs a new instance using the given {@link CSVFormat}. * * <p> * If you do not read all records from the given {@code reader}, you should call {@link #close()} on the parser, @@ -498,7 +498,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable { } /** - * Constructs a new instance using the given {@link CSVFormat} + * Constructs a new instance using the given {@link CSVFormat}. * * <p> * If you do not read all records from the given {@code reader}, you should call {@link #close()} on the parser, @@ -527,7 +527,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable { } /** - * Constructs a new instance using the given {@link CSVFormat} + * Constructs a new instance using the given {@link CSVFormat}. * * <p> * If you do not read all records from the given {@code reader}, you should call {@link #close()} on the parser, @@ -658,11 +658,11 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable { * Gets the current line number in the input stream. * * <p> - * <strong>ATTENTION:</strong> If your CSV input has multi-line values, the returned number does not correspond to + * <strong>Note:</strong> If your CSV input has multi-line values, the returned number does not correspond to * the record number. * </p> * - * @return current line number + * @return current line number. */ public long getCurrentLineNumber() { return lexer.getCurrentLineNumber(); @@ -671,7 +671,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable { /** * Gets the first end-of-line string encountered. * - * @return the first end-of-line string + * @return the first end-of-line string. * @since 1.5 */ public String getFirstEndOfLine() { @@ -695,7 +695,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable { * The map keys are column names. The map values are 0-based indices. * </p> * <p> - * Note: The map can only provide a one-to-one mapping when the format did not + * <strong>Note:</strong> The map can only provide a one-to-one mapping when the format did not * contain null or duplicate column names. * </p> * @@ -739,7 +739,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable { * Gets the current record number in the input stream. * * <p> - * <strong>ATTENTION:</strong> If your CSV input has multi-line values, the returned number does not correspond to + * <strong>Note:</strong> If your CSV input has multi-line values, the returned number does not correspond to * the line number. * </p> *