]> gitweb.factorcode.org Git - factor.git/blobdiff - core/make/make-docs.factor
Rename accumulator to collector, pusher to selector
[factor.git] / core / make / make-docs.factor
index 881c36e3b63525d2be23e7f1e03434959fd25448..3366357011d1ed3d764d7c9e1aa6448b170de115 100644 (file)
@@ -37,7 +37,7 @@ $nl
 { $code "'[ 2 _ + ]" } ;
 
 ARTICLE: "namespaces-make" "Making sequences with variables"
-"The " { $vocab-link "make" } " vocabulary implements a facility for constructing sequences by holding an accumulator sequence in a variable. Storing the accumulator sequence in a variable rather than the stack may allow code to be written with less stack manipulation."
+"The " { $vocab-link "make" } " vocabulary implements a facility for constructing sequences by holding an collector sequence in a variable. Storing the collector sequence in a variable rather than the stack may allow code to be written with less stack manipulation."
 $nl
 "Sequence construction is wrapped in a combinator:"
 { $subsections make }
@@ -47,7 +47,7 @@ $nl
     %
     #
 }
-"The accumulator sequence can be accessed directly from inside a " { $link make } ":"
+"The collector sequence can be accessed directly from inside a " { $link make } ":"
 { $subsections building }
 { $example
   "USING: make math.parser ;"