]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/coroutines/coroutines-docs.factor
docs: change ``{ $quotation "( x -- y )" }`` to ``{ $quotation ( x -- y ) }``.
[factor.git] / extra / coroutines / coroutines-docs.factor
index e12e29dc23c2217b9cfdf73f43266fdeed539ef6..f3d114043cfeb04fcd0244b5e16fa3e3b725a8a9 100644 (file)
@@ -3,7 +3,7 @@ USING: help.markup help.syntax kernel ;
 IN: coroutines
 
 HELP: cocreate
-{ $values { "quot" { $quotation "( value -- )" } } { "co" coroutine } }
+{ $values { "quot" { $quotation ( value -- ) } } { "co" coroutine } }
 { $description "Create a new coroutine which will execute the quotation when resumed. The quotation will have an initial value (received from " { $link coresume } ") on the stack when first resumed.\n\nCoroutines should never terminate normally by \"falling off\" the end of the quotation; instead, they should call " { $link coterminate } "." }
 ;