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 22df0e28c470e98b3eee74420d53dc686be4329c
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Oct 15 10:12:39 2022 -0400

    Fix Javadoc links
---
 src/main/java/org/apache/commons/csv/CSVParser.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/csv/CSVParser.java 
b/src/main/java/org/apache/commons/csv/CSVParser.java
index fd4c3a90..a8076d4a 100644
--- a/src/main/java/org/apache/commons/csv/CSVParser.java
+++ b/src/main/java/org/apache/commons/csv/CSVParser.java
@@ -742,7 +742,7 @@ public final class CSVParser implements 
Iterable<CSVRecord>, Closeable {
      * <p>
      * If it is necessary to construct an iterator which is usable after the
      * parser is closed, one option is to extract all records as a list with
-     * {@link getRecords()}, and return an iterator to that list.
+     * {@link #getRecords()}, and return an iterator to that list.
      * </p>
      */
     @Override
@@ -808,7 +808,7 @@ public final class CSVParser implements 
Iterable<CSVRecord>, Closeable {
      * Returns a sequential {@code Stream} with this collection as its source.
      * <p>
      * If the parser is closed, the stream will not produce any more values.
-     * See the comments in {@link iterator()}.
+     * See the comments in {@link #iterator()}.
      * </p>
      * @return a sequential {@code Stream} with this collection as its source.
      * @since 1.9.0

Reply via email to