@@ -474,7 +474,7 @@ public static CSVParser parse(final URL url, final Charset charset, final CSVFor
474
474
private final Token reusableToken = new Token ();
475
475
476
476
/**
477
- * Constructs a new instance using the given {@link CSVFormat}
477
+ * Constructs a new instance using the given {@link CSVFormat}.
478
478
*
479
479
* <p>
480
480
* 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
498
498
}
499
499
500
500
/**
501
- * Constructs a new instance using the given {@link CSVFormat}
501
+ * Constructs a new instance using the given {@link CSVFormat}.
502
502
*
503
503
* <p>
504
504
* 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
527
527
}
528
528
529
529
/**
530
- * Constructs a new instance using the given {@link CSVFormat}
530
+ * Constructs a new instance using the given {@link CSVFormat}.
531
531
*
532
532
* <p>
533
533
* 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 {
658
658
* Gets the current line number in the input stream.
659
659
*
660
660
* <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
662
662
* the record number.
663
663
* </p>
664
664
*
665
- * @return current line number
665
+ * @return current line number.
666
666
*/
667
667
public long getCurrentLineNumber () {
668
668
return lexer .getCurrentLineNumber ();
@@ -671,7 +671,7 @@ public long getCurrentLineNumber() {
671
671
/**
672
672
* Gets the first end-of-line string encountered.
673
673
*
674
- * @return the first end-of-line string
674
+ * @return the first end-of-line string.
675
675
* @since 1.5
676
676
*/
677
677
public String getFirstEndOfLine () {
@@ -695,7 +695,7 @@ public String getHeaderComment() {
695
695
* The map keys are column names. The map values are 0-based indices.
696
696
* </p>
697
697
* <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
699
699
* contain null or duplicate column names.
700
700
* </p>
701
701
*
@@ -739,7 +739,7 @@ public List<String> getHeaderNames() {
739
739
* Gets the current record number in the input stream.
740
740
*
741
741
* <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
743
743
* the line number.
744
744
* </p>
745
745
*
0 commit comments