You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2013/09/13 10:56:48 UTC

svn commit: r1522820 - /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java

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>