diff --git a/src/main/java/org/apache/commons/csv/CSVParser.java b/src/main/java/org/apache/commons/csv/CSVParser.java index 07aba516..8345a151 100644 --- a/src/main/java/org/apache/commons/csv/CSVParser.java +++ b/src/main/java/org/apache/commons/csv/CSVParser.java @@ -190,7 +190,7 @@ public final class CSVParser implements Iterable, Closeable { * @param file * a CSV file. Must not be null. * @param charset - * A Charset + * The Charset to decode the given file. * @param format * the CSVFormat used for CSV parsing. Must not be null. * @return a new parser @@ -217,7 +217,7 @@ public final class CSVParser implements Iterable, Closeable { * @param inputStream * an InputStream containing CSV-formatted input. Must not be null. * @param charset - * a Charset. + * The Charset to decode the given file. * @param format * the CSVFormat used for CSV parsing. Must not be null. * @return a new CSVParser configured with the given reader and format. @@ -241,7 +241,7 @@ public final class CSVParser implements Iterable, Closeable { * @param path * a CSV file. Must not be null. * @param charset - * A Charset + * The Charset to decode the given file. * @param format * the CSVFormat used for CSV parsing. Must not be null. * @return a new parser