diff --git a/basis/help/handbook/handbook.factor b/basis/help/handbook/handbook.factor index 1b488b1d48..9d57e758c1 100755 --- a/basis/help/handbook/handbook.factor +++ b/basis/help/handbook/handbook.factor @@ -108,6 +108,7 @@ USE: io.buffers ARTICLE: "collections" "Collections" { $heading "Sequences" } { $subsection "sequences" } +{ $subsection "namespaces-make" } "Fixed-length sequences:" { $subsection "arrays" } { $subsection "quotations" } diff --git a/core/make/make-docs.factor b/core/make/make-docs.factor index 162d1fc8b6..ef037f1bb9 100644 --- a/core/make/make-docs.factor +++ b/core/make/make-docs.factor @@ -2,7 +2,7 @@ IN: make USING: help.markup help.syntax quotations sequences math.parser kernel ; -ARTICLE: "namespaces-make" "Constructing sequences" +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." { $subsection make } { $subsection , }