]> gitweb.factorcode.org Git - factor.git/commitdiff
io: fix help lint
authorSlava Pestov <slava@shill.local>
Mon, 4 Apr 2011 00:37:28 +0000 (17:37 -0700)
committerSlava Pestov <slava@shill.local>
Mon, 4 Apr 2011 00:37:28 +0000 (17:37 -0700)
core/io/io-docs.factor

index 86f27f5186ec4172626a56c621b2ecb5c9a44655..ef64896dfb3e12665bc58d85823a7ad1707608c9 100644 (file)
@@ -245,11 +245,11 @@ HELP: lines
 { $description "Reads lines of text until from the " { $link input-stream } " until it is exhausted, collecting them in a sequence of strings." } ;
 
 HELP: each-line
-{ $values { "quot" { $quotation "( str -- )" } } }
+{ $values { "quot" { $quotation "( ... line -- ... )" } } }
 { $description "Calls the quotation with successive lines of text, until the current " { $link input-stream } " is exhausted." } ;
 
 HELP: each-block
-{ $values { "quot" { $quotation "( block -- )" } } }
+{ $values { "quot" { $quotation "( ... block -- ... )" } } }
 { $description "Calls the quotation with successive blocks of data, until the current " { $link input-stream } " is exhausted." } ;
 
 HELP: stream-contents