csv: fix help-lint warnings.

db4
John Benediktsson 2013-03-15 06:16:34 -07:00
parent bccec54caf
commit 779721c737
1 changed files with 3 additions and 6 deletions

View File

@ -3,13 +3,11 @@ io.pathnames strings ;
IN: csv
HELP: read-row
{ $values { "stream" "an input stream" }
{ "row" "an array of fields" } }
{ $values { "row" "an array of fields" } }
{ $description "parses a row from a csv stream" } ;
HELP: read-csv
{ $values { "stream" "an input stream" }
{ "rows" "an array of arrays of fields" } }
{ $values { "rows" "an array of arrays of fields" } }
{ $description "Parses a csv stream into an array of row arrays." } ;
HELP: file>csv
@ -45,8 +43,7 @@ HELP: write-row
{ $description "writes a row to the output stream" } ;
HELP: write-csv
{ $values { "rows" "a sequence of sequences of strings" }
{ "stream" "an output stream" } }
{ $values { "rows" "a sequence of sequences of strings" } }
{ $description "Writes a sequence of sequences of comma-separated-values to the output stream, escaping where necessary." } ;
HELP: with-delimiter