You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2012/03/29 20:48:47 UTC

svn commit: r1307042 - /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java

Author: sebb
Date: Thu Mar 29 18:48:47 2012
New Revision: 1307042

URL: http://svn.apache.org/viewvc?rev=1307042&view=rev
Log:
Javadoc tweak

Modified:
    commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java

Modified: commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java?rev=1307042&r1=1307041&r2=1307042&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java (original)
+++ commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVFormat.java Thu Mar 29 18:48:47 2012
@@ -387,11 +387,11 @@ public class CSVFormat implements Serial
      * Returns a copy of this format using the specified header. The header can
      * either be parsed automatically from the input file with:
      *
-     * <pre>CSVFormat format = CSVFormat.DEFAULT.withHeader();</pre>
+     * <pre>CSVFormat format = aformat.withHeader();</pre>
      *
      * or specified manually with:
      *
-     * <pre>CSVFormat format = CSVFormat.DEFAULT.withHeader("name", "email", "phone");</pre>
+     * <pre>CSVFormat format = aformat.withHeader("name", "email", "phone");</pre>
      *
      * @param header the header, <tt>null</tt> if disabled, empty if parsed automatically, user specified otherwise.
      *