From 8325837b84e22a6624ece3f8ed17bace11fda0ca Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Mon, 22 Jun 2015 18:42:16 -0700 Subject: [PATCH] locals.parser: fix help-lint warning. --- basis/locals/parser/parser-docs.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basis/locals/parser/parser-docs.factor b/basis/locals/parser/parser-docs.factor index ccd413bcb3..e75ddd70e0 100644 --- a/basis/locals/parser/parser-docs.factor +++ b/basis/locals/parser/parser-docs.factor @@ -13,8 +13,8 @@ HELP: parse-def { $description "Parses the lexical variable bindings following a " { $link \ :> } " token." } ; HELP: with-lambda-scope -{ $values { "assoc" "local variables" } { "reader-quot" quotation } } -{ $description "Runs the quotation in a lambda scope. That means changes the qutoation does to the " { $link manifest } " will not escape after the qutoation ends." } ; +{ $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." } ; ARTICLE: "locals.parser" "Utility words used by locals parsing words" "Words for parsing local words."