]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/concurrency/futures/futures-docs.factor
docs: change ``{ $quotation "( x -- y )" }`` to ``{ $quotation ( x -- y ) }``.
[factor.git] / basis / concurrency / futures / futures-docs.factor
index ff5773a86c93ffa90ef1fb2c654e53ffaff69294..56f8c73237cf43c430eebaef08b0de62fd6b776b 100644 (file)
@@ -5,7 +5,7 @@ continuations help.markup help.syntax quotations calendar ;
 IN: concurrency.futures\r
 \r
 HELP: future\r
-{ $values { "quot" { $quotation "( -- value )" } } { "future" future } }\r
+{ $values { "quot" { $quotation ( -- value ) } } { "future" future } }\r
 { $description "Creates a deferred computation."\r
 $nl\r
 "The quotation begins with an empty data stack, an empty catch stack, and a name stack containing the global namespace only. This means that the only way to pass data to the quotation is to partially apply the data, for example using " { $link curry } " or " { $link compose } "." } ;\r