@@ -101,7 +101,7 @@ public InputStreamReader newReader(final InputStream inputStream) {
Apache Commons CSV provides several ways to access record values.
The simplest way is to access values by their index in the record.
However, columns in CSV files often have a name, for example: ID, CustomerNo, Birthday, etc.
- The CSVFormat class provides an API for specifing these header names and CSVRecord on
+ The CSVFormat class provides an API for specifying these header names and CSVRecord on
the other hand has methods to access values by their corresponding header name.
@@ -149,7 +149,7 @@ for (CSVRecord record : records) {
Some CSV files define header names in their first record. If configured, Apache Commons CSV can parse
the header names from the first record: