diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java
index a0a83cc3..58ba1bdb 100644
--- a/src/main/java/org/apache/commons/csv/CSVFormat.java
+++ b/src/main/java/org/apache/commons/csv/CSVFormat.java
@@ -438,13 +438,13 @@ public final class CSVFormat implements Serializable {
* Settings are:
*
*
- * - withDelimiter(',')
- * - withQuote('"')
- * - withRecordSeparator('\n')
- * - withIgnoreEmptyLines(false)
- * - withEscape('\\')
- * - withNullString("")
- * - withQuoteMode(QuoteMode.ALL_NON_NULL)
+ * - {@code withDelimiter(',')}
+ * - {@code withEscape('"')}
+ * - {@code withIgnoreEmptyLines(false)}
+ * - {@code withQuote('"')}
+ * - {@code withRecordSeparator('\n')}
+ * - {@code withNullString("")}
+ * - {@code withQuoteMode(QuoteMode.ALL_NON_NULL)}
*
*
* @see Predefined#MySQL