diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java
index a85ab3b0..da0e3b00 100644
--- a/src/main/java/org/apache/commons/csv/CSVFormat.java
+++ b/src/main/java/org/apache/commons/csv/CSVFormat.java
@@ -208,7 +208,7 @@ public final class CSVFormat implements Serializable {
*
*
* - {@link #withDelimiter(char) withDelimiter(',')}
- * - {@link #withQuote(String) withQuote('"')}
+ * - {@link #withQuote(char) withQuote('"')}
* - {@link #withRecordSeparator(String) withRecordSeparator("\r\n")}
* - {@link #withIgnoreEmptyLines(boolean) withIgnoreEmptyLines(false)}
* - {@link #withAllowMissingColumnNames(boolean) withAllowMissingColumnNames(true)}
@@ -332,7 +332,8 @@ public final class CSVFormat implements Serializable {
* 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