Skip to content

Commit 3ddfb40

Browse files
committed
[CSV-208] Fix escape character for POSTGRESQL_TEXT and POSTGRESQL_CSV
formats. Fix Javadoc for org.apache.commons.csv.CSVFormat.POSTGRESQL_CSV.
1 parent 13c539a commit 3ddfb40

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -438,13 +438,13 @@ public CSVFormat getFormat() {
438438
* Settings are:
439439
* </p>
440440
* <ul>
441-
* <li>withDelimiter(',')</li>
442-
* <li>withQuote('"')</li>
443-
* <li>withRecordSeparator('\n')</li>
444-
* <li>withIgnoreEmptyLines(false)</li>
445-
* <li>withEscape('\\')</li>
446-
* <li>withNullString("")</li>
447-
* <li>withQuoteMode(QuoteMode.ALL_NON_NULL)</li>
441+
* <li>{@code withDelimiter(',')}</li>
442+
* <li>{@code withEscape('"')}</li>
443+
* <li>{@code withIgnoreEmptyLines(false)}</li>
444+
* <li>{@code withQuote('"')}</li>
445+
* <li>{@code withRecordSeparator('\n')}</li>
446+
* <li>{@code withNullString("")}</li>
447+
* <li>{@code withQuoteMode(QuoteMode.ALL_NON_NULL)}</li>
448448
* </ul>
449449
*
450450
* @see Predefined#MySQL

0 commit comments

Comments
 (0)