]> gitweb.factorcode.org Git - factor.git/blobdiff - core/io/io-docs.factor
docs: change ``{ $quotation "( x -- y )" }`` to ``{ $quotation ( x -- y ) }``.
[factor.git] / core / io / io-docs.factor
index bd061b527964439296ef3d4eeaabace4ceb44dd8..67fb5757c121c12a6f896fc572230374a125b985 100644 (file)
@@ -306,11 +306,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 "( ... line -- ... )" } } }
+{ $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