Author: britter
Date: Thu Oct 9 20:07:19 2014
New Revision: 1630582
URL: http://svn.apache.org/r1630582
Log:
Further JavaDoc corrections
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=1630582&r1=1630581&r2=1630582&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 Oct 9 20:07:19 2014
@@ -208,7 +208,7 @@ public final class CSVFormat implements
* </p>
* <ul>
* <li>{@link #withDelimiter(char) withDelimiter(',')}</li>
- * <li>{@link #withQuote(String) withQuote('"')}</li>
+ * <li>{@link #withQuote(char) withQuote('"')}</li>
* <li>{@link #withRecordSeparator(String)
withRecordSeparator("\r\n")}</li>
* <li>{@link #withIgnoreEmptyLines(boolean)
withIgnoreEmptyLines(false)}</li>
* <li>{@link #withAllowMissingColumnNames(boolean)
withAllowMissingColumnNames(true)}</li>
@@ -332,7 +332,8 @@ public final class CSVFormat implements
* the line separator to use for output
* @param nullString
* the line separator to use for output
- * @param toHeaderComments TODO
+ * @param headerComments
+ * the comments to be printed by the Printer before the actual
CSV data
* @param header
* the header
* @param skipHeaderRecord TODO