From e45e669fd66aafe6370c63b4e97750154befdca0 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Mon, 24 Aug 2015 10:21:35 -0700 Subject: [PATCH] locals.parser: change docs for with-lambda-scope. --- basis/locals/parser/parser-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/locals/parser/parser-docs.factor b/basis/locals/parser/parser-docs.factor index e75ddd70e0..9d7769bdf9 100644 --- a/basis/locals/parser/parser-docs.factor +++ b/basis/locals/parser/parser-docs.factor @@ -14,7 +14,7 @@ HELP: parse-def HELP: with-lambda-scope { $values { "assoc" "local variables" } { "reader-quot" quotation } { "quot" quotation } } -{ $description "Runs the quotation in a lambda scope. That means changes the quotation does to the " { $link manifest } " will not escape after the quotation ends." } ; +{ $description "Runs the quotation in a lambda scope. That means that any local variables are available for lookup in the " { $link manifest } ", but are cleaned up after the quotation finishes." } ; ARTICLE: "locals.parser" "Utility words used by locals parsing words" "Words for parsing local words."