]> gitweb.factorcode.org Git - factor.git/commitdiff
csv: fix help-lint warnings.
authorJohn Benediktsson <mrjbq7@gmail.com>
Fri, 15 Mar 2013 13:16:34 +0000 (06:16 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Fri, 15 Mar 2013 13:16:34 +0000 (06:16 -0700)
basis/csv/csv-docs.factor

index 056fdfb3933144a991ce82db956840c8791b9033..96a0575926c068b8718851e076cd8287c1e6d4a0 100644 (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