This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-csv.git
commit 5674be4c7549863ed65315060232085c3d2d8a92 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sat Mar 15 09:51:56 2025 -0400 Javadoc --- src/main/java/org/apache/commons/csv/CSVFormat.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java index 327083a2..71b13466 100644 --- a/src/main/java/org/apache/commons/csv/CSVFormat.java +++ b/src/main/java/org/apache/commons/csv/CSVFormat.java @@ -1702,10 +1702,10 @@ public final class CSVFormat implements Serializable { } /** - * Formats the specified values. + * Formats the specified values as a CSV record string. * - * @param values the values to format - * @return the formatted values + * @param values the values to format. + * @return the formatted values. */ public String format(final Object... values) { return Uncheck.get(() -> format_(values));