You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by st...@apache.org on 2018/02/09 14:21:58 UTC

[33/34] commons-csv git commit: Slightly better Javadoc.

Slightly better Javadoc.

Project: http://git-wip-us.apache.org/repos/asf/commons-csv/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-csv/commit/eede739d
Tree: http://git-wip-us.apache.org/repos/asf/commons-csv/tree/eede739d
Diff: http://git-wip-us.apache.org/repos/asf/commons-csv/diff/eede739d

Branch: refs/heads/CSV-216
Commit: eede739d18c69722ff39e8e42df6b68ae7627082
Parents: f3f48be
Author: Gary Gregory <gg...@apache.org>
Authored: Tue Jan 9 10:31:48 2018 -0700
Committer: Gary Gregory <gg...@apache.org>
Committed: Tue Jan 9 10:31:48 2018 -0700

----------------------------------------------------------------------
 src/main/java/org/apache/commons/csv/QuoteMode.java | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-csv/blob/eede739d/src/main/java/org/apache/commons/csv/QuoteMode.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/csv/QuoteMode.java b/src/main/java/org/apache/commons/csv/QuoteMode.java
index 216f775..272deb7 100644
--- a/src/main/java/org/apache/commons/csv/QuoteMode.java
+++ b/src/main/java/org/apache/commons/csv/QuoteMode.java
@@ -17,8 +17,7 @@
 package org.apache.commons.csv;
 
 /**
- * Defines quote behavior when printing.
- *
+ * Defines quoting behavior when printing.
  */
 public enum QuoteMode {
 
@@ -33,8 +32,8 @@ public enum QuoteMode {
     ALL_NON_NULL,
 
     /**
-     * Quotes fields which contain special characters such as a delimiter, quotes character or any of the characters in
-     * line separator.
+     * Quotes fields which contain special characters such as a the field delimiter, quote character or any of the
+     * characters in the line separator string.
      */
     MINIMAL,
 
@@ -44,8 +43,8 @@ public enum QuoteMode {
     NON_NUMERIC,
 
     /**
-     * Never quotes fields. When the delimiter occurs in data, the printer prefixes it with the current escape
-     * character. If the escape character is not set, format validation throws an exception.
+     * Never quotes fields. When the delimiter occurs in data, the printer prefixes it with the escape character. If the
+     * escape character is not set, format validation throws an exception.
      */
     NONE
 }