]> gitweb.factorcode.org Git - factor.git/commitdiff
combinators: tweak docs
authorSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Fri, 4 Jun 2010 01:34:28 +0000 (21:34 -0400)
committerSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Fri, 4 Jun 2010 01:34:55 +0000 (21:34 -0400)
core/combinators/combinators-docs.factor

index 5b1ce8e80cd1828728f729bd4b948c6f48633429..67bf6da23c97806f300061c2ae0a7df9246fc5ee 100644 (file)
@@ -65,9 +65,9 @@ ARTICLE: "apply-combinators" "Apply combinators"
 "All of the apply combinators are equivalent to using the corresponding " { $link "spread-combinators" } " with the same quotation supplied for every value." ;
 
 ARTICLE: "dip-keep-combinators" "Preserving combinators"
-"Sometimes it is necessary to temporarily hide values on the datastack. The " { $snippet "dip" } " combinators invoke the quotation at the top of the stack, hiding some number of values underneath:"
+"Sometimes it is necessary to temporarily hide values on the datastack. The " { $snippet "dip" } " combinators invoke the quotation at the top of the stack, hiding some number of values:"
 { $subsections dip 2dip 3dip 4dip }
-"The " { $snippet "keep" } " combinators invoke a quotation and restore some number of values to the top of the stack when it completes:"
+"The " { $snippet "keep" } " combinators invoke a quotation and restore some number of values to the top of the stack:"
 { $subsections keep 2keep 3keep } ;
 
 ARTICLE: "curried-dataflow" "Curried dataflow combinators"