Skip to content

Commit 77a19dc

Browse files
committed
Javadoc
1 parent 60b70de commit 77a19dc

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/main/java/org/apache/commons/csv/CSVParser.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ public static CSVParser parse(final URL url, final Charset charset, final CSVFor
474474
private final Token reusableToken = new Token();
475475

476476
/**
477-
* Constructs a new instance using the given {@link CSVFormat}
477+
* Constructs a new instance using the given {@link CSVFormat}.
478478
*
479479
* <p>
480480
* 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 CSVParser(final Reader reader, final CSVFormat format) throws IOException
498498
}
499499

500500
/**
501-
* Constructs a new instance using the given {@link CSVFormat}
501+
* Constructs a new instance using the given {@link CSVFormat}.
502502
*
503503
* <p>
504504
* 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 CSVParser(final Reader reader, final CSVFormat format, final long charact
527527
}
528528

529529
/**
530-
* Constructs a new instance using the given {@link CSVFormat}
530+
* Constructs a new instance using the given {@link CSVFormat}.
531531
*
532532
* <p>
533533
* If you do not read all records from the given {@code reader}, you should call {@link #close()} on the parser,
@@ -658,11 +658,11 @@ private Headers createHeaders() throws IOException {
658658
* Gets the current line number in the input stream.
659659
*
660660
* <p>
661-
* <strong>ATTENTION:</strong> If your CSV input has multi-line values, the returned number does not correspond to
661+
* <strong>Note:</strong> If your CSV input has multi-line values, the returned number does not correspond to
662662
* the record number.
663663
* </p>
664664
*
665-
* @return current line number
665+
* @return current line number.
666666
*/
667667
public long getCurrentLineNumber() {
668668
return lexer.getCurrentLineNumber();
@@ -671,7 +671,7 @@ public long getCurrentLineNumber() {
671671
/**
672672
* Gets the first end-of-line string encountered.
673673
*
674-
* @return the first end-of-line string
674+
* @return the first end-of-line string.
675675
* @since 1.5
676676
*/
677677
public String getFirstEndOfLine() {
@@ -695,7 +695,7 @@ public String getHeaderComment() {
695695
* The map keys are column names. The map values are 0-based indices.
696696
* </p>
697697
* <p>
698-
* Note: The map can only provide a one-to-one mapping when the format did not
698+
* <strong>Note:</strong> The map can only provide a one-to-one mapping when the format did not
699699
* contain null or duplicate column names.
700700
* </p>
701701
*
@@ -739,7 +739,7 @@ public List<String> getHeaderNames() {
739739
* Gets the current record number in the input stream.
740740
*
741741
* <p>
742-
* <strong>ATTENTION:</strong> If your CSV input has multi-line values, the returned number does not correspond to
742+
* <strong>Note:</strong> If your CSV input has multi-line values, the returned number does not correspond to
743743
* the line number.
744744
* </p>
745745
*

0 commit comments

Comments
 (0)