diff --git a/src/main/java/org/apache/commons/csv/CSVPrinter.java b/src/main/java/org/apache/commons/csv/CSVPrinter.java index b801901c..e122da6d 100644 --- a/src/main/java/org/apache/commons/csv/CSVPrinter.java +++ b/src/main/java/org/apache/commons/csv/CSVPrinter.java @@ -344,7 +344,8 @@ public final class CSVPrinter implements Flushable, Closeable { * Prints the given values a single record of delimiter separated values followed by the record separator. * *

- * The values will be quoted if needed. Quotes and newLine characters will be escaped. + * The values will be quoted if needed. Quotes and newLine characters will be escaped. This method adds the record + * separator to the output after printing the record, so there is no need to call {@link #println()}. *

* * @param values @@ -363,7 +364,8 @@ public final class CSVPrinter implements Flushable, Closeable { * Prints the given values a single record of delimiter separated values followed by the record separator. * *

- * The values will be quoted if needed. Quotes and newLine characters will be escaped. + * The values will be quoted if needed. Quotes and newLine characters will be escaped. This method adds the record + * separator to the output after printing the record, so there is no need to call {@link #println()}. *

* * @param values