Skip to content
This repository was archived by the owner on Sep 14, 2025. It is now read-only.

Commit eede739

Browse files
committed
Slightly better Javadoc.
1 parent f3f48be commit eede739

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

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

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
package org.apache.commons.csv;
1818

1919
/**
20-
* Defines quote behavior when printing.
21-
*
20+
* Defines quoting behavior when printing.
2221
*/
2322
public enum QuoteMode {
2423

@@ -33,8 +32,8 @@ public enum QuoteMode {
3332
ALL_NON_NULL,
3433

3534
/**
36-
* Quotes fields which contain special characters such as a delimiter, quotes character or any of the characters in
37-
* line separator.
35+
* Quotes fields which contain special characters such as a the field delimiter, quote character or any of the
36+
* characters in the line separator string.
3837
*/
3938
MINIMAL,
4039

@@ -44,8 +43,8 @@ public enum QuoteMode {
4443
NON_NUMERIC,
4544

4645
/**
47-
* Never quotes fields. When the delimiter occurs in data, the printer prefixes it with the current escape
48-
* character. If the escape character is not set, format validation throws an exception.
46+
* Never quotes fields. When the delimiter occurs in data, the printer prefixes it with the escape character. If the
47+
* escape character is not set, format validation throws an exception.
4948
*/
5049
NONE
5150
}

0 commit comments

Comments
 (0)