Skip to content

Commit 20e6c4e

Browse files
committed
Use correct return type in JavaDoc - a list is returned, not an array.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1522814 13f79535-47bb-0310-9956-ffa450edef68
1 parent 1299090 commit 20e6c4e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,12 +258,12 @@ public long getRecordNumber() {
258258
}
259259

260260
/**
261-
* Parses the CSV input according to the given format and returns the content as an array of {@link CSVRecord}
262-
* entries.
261+
* Parses the CSV input according to the given format and returns the content as a list of
262+
* {@link CSVRecord CSVRecords}.
263263
* <p/>
264264
* The returned content starts at the current parse-position in the stream.
265265
*
266-
* @return list of {@link CSVRecord} entries, may be empty
266+
* @return list of {@link CSVRecord CSVRecords}, may be empty
267267
* @throws IOException
268268
* on parse error or input read-failure
269269
*/

0 commit comments

Comments
 (0)