Author: britter
Date: Fri Sep 13 08:56:47 2013
New Revision: 1522820
URL: http://svn.apache.org/r1522820
Log:
Don't use yet another term for format
Modified:
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java
Modified:
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java
URL:
http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java?rev=1522820&r1=1522819&r2=1522820&view=diff
==============================================================================
---
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java
(original)
+++
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java
Fri Sep 13 08:56:47 2013
@@ -36,9 +36,9 @@ import java.util.Map;
import java.util.NoSuchElementException;
/**
- * Parses CSV files according to the specified configuration.
+ * Parses CSV files according to the specified format.
*
- * Because CSV appears in many different dialects, the parser supports many
configuration settings by allowing the
+ * Because CSV appears in many different dialects, the parser supports many
formats by allowing the
* specification of a {@link CSVFormat}.
*
* <p>