From 8fa061a108bf09f3c8e01de38030393669494c2e Mon Sep 17 00:00:00 2001 From: juerg Date: Tue, 31 Oct 2023 16:44:35 +0100 Subject: [PATCH] added doc --- .../github/jlangch/venice/impl/functions/CsvFunctions.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/github/jlangch/venice/impl/functions/CsvFunctions.java b/src/main/java/com/github/jlangch/venice/impl/functions/CsvFunctions.java index a5f1d4f95..da59afe28 100644 --- a/src/main/java/com/github/jlangch/venice/impl/functions/CsvFunctions.java +++ b/src/main/java/com/github/jlangch/venice/impl/functions/CsvFunctions.java @@ -232,8 +232,9 @@ else if (out instanceof Writer) { .meta() .arglists("(csv/write-str records & options)") .doc( - "Writes data to a string in CSV format.\n" + - "\n" + + "Writes data to a string in CSV format.\n\n" + + "All fields containing a quote char, a separator char or a newline " + + "are quoted.\n\n" + "Options:\n\n" + "| :separator val | e.g. \",\", defaults to a comma |\n" + "| :quote val | e.g. \"'\", defaults to a double quote |\n" +