From b9261bdf43e0002b697cd1894eb07dafcfc6659d Mon Sep 17 00:00:00 2001 From: gifti258 <80504430+gifti258@users.noreply.github.com> Date: Mon, 20 Dec 2021 19:34:25 +0100 Subject: [PATCH] combinators.short-circuit.smart: Fix typo --- basis/combinators/short-circuit/smart/smart-docs.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basis/combinators/short-circuit/smart/smart-docs.factor b/basis/combinators/short-circuit/smart/smart-docs.factor index 941069cc00..a516329043 100644 --- a/basis/combinators/short-circuit/smart/smart-docs.factor +++ b/basis/combinators/short-circuit/smart/smart-docs.factor @@ -7,7 +7,7 @@ HELP: && { $values { "quots" "a sequence of quotations" } { "quot" quotation } } -{ $description "Infers the number of arguments that each quotation takes from the stack. Eacn quotation must take the same number of arguments. Returns true if every quotation yields true, and stops early if one yields false." } +{ $description "Infers the number of arguments that each quotation takes from the stack. Each quotation must take the same number of arguments. Returns true if every quotation yields true, and stops early if one yields false." } { $examples "Smart combinators will infer the two inputs:" { $example "USING: prettyprint kernel math combinators.short-circuit.smart ;" "2 3 { [ + 5 = ] [ - -1 = ] } && ." @@ -19,7 +19,7 @@ HELP: || { $values { "quots" "a sequence of quotations" } { "quot" quotation } } -{ $description "Infers the number of arguments that each quotation takes from the stack. Eacn quotation must take the same number of arguments. Returns true if any quotation yields true, and stops early when one yields true." } +{ $description "Infers the number of arguments that each quotation takes from the stack. Each quotation must take the same number of arguments. Returns true if any quotation yields true, and stops early when one yields true." } { $examples "Smart combinators will infer the two inputs:" { $example "USING: prettyprint kernel math combinators.short-circuit.smart ;" "2 3 { [ - 1 = ] [ + 5 = ] } || ." -- 2.34.1