diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java index 8dd912c1..f729dd69 100644 --- a/src/main/java/org/apache/commons/csv/CSVFormat.java +++ b/src/main/java/org/apache/commons/csv/CSVFormat.java @@ -59,10 +59,10 @@ import java.util.Set; * * *
- * The {@link CSVRecord} provides static methods to parse other input types, for example: + * The {@link CSVParser} provides static methods to parse other input types, for example: *
* - *CSVParser parser = CSVFormat.parseFile(file, CSVFormat.EXCEL);+ *
CSVParser parser = CSVParser.parse(file, StandardCharsets.US_ASCII, CSVFormat.EXCEL);* *