csv: fix help-lint warnings.
parent
bccec54caf
commit
779721c737
|
@ -3,13 +3,11 @@ io.pathnames strings ;
|
||||||
IN: csv
|
IN: csv
|
||||||
|
|
||||||
HELP: read-row
|
HELP: read-row
|
||||||
{ $values { "stream" "an input stream" }
|
{ $values { "row" "an array of fields" } }
|
||||||
{ "row" "an array of fields" } }
|
|
||||||
{ $description "parses a row from a csv stream" } ;
|
{ $description "parses a row from a csv stream" } ;
|
||||||
|
|
||||||
HELP: read-csv
|
HELP: read-csv
|
||||||
{ $values { "stream" "an input stream" }
|
{ $values { "rows" "an array of arrays of fields" } }
|
||||||
{ "rows" "an array of arrays of fields" } }
|
|
||||||
{ $description "Parses a csv stream into an array of row arrays." } ;
|
{ $description "Parses a csv stream into an array of row arrays." } ;
|
||||||
|
|
||||||
HELP: file>csv
|
HELP: file>csv
|
||||||
|
@ -45,8 +43,7 @@ HELP: write-row
|
||||||
{ $description "writes a row to the output stream" } ;
|
{ $description "writes a row to the output stream" } ;
|
||||||
|
|
||||||
HELP: write-csv
|
HELP: write-csv
|
||||||
{ $values { "rows" "a sequence of sequences of strings" }
|
{ $values { "rows" "a sequence of sequences of strings" } }
|
||||||
{ "stream" "an output stream" } }
|
|
||||||
{ $description "Writes a sequence of sequences of comma-separated-values to the output stream, escaping where necessary." } ;
|
{ $description "Writes a sequence of sequences of comma-separated-values to the output stream, escaping where necessary." } ;
|
||||||
|
|
||||||
HELP: with-delimiter
|
HELP: with-delimiter
|
||||||
|
|
Loading…
Reference in New Issue