]> gitweb.factorcode.org Git - factor.git/commitdiff
stack-checker-docs: fix a typo
authorAlexander Iljin <ajsoft@yandex.ru>
Sat, 15 Sep 2018 14:18:13 +0000 (16:18 +0200)
committerJohn Benediktsson <mrjbq7@gmail.com>
Wed, 5 Dec 2018 02:43:32 +0000 (18:43 -0800)
basis/stack-checker/stack-checker-docs.factor

index 478d7c00d6f329c7d3c193e99f70e23a51d4dae5..3f3c066a8595a724c10f526e488708cd9740c9a2 100644 (file)
@@ -72,7 +72,7 @@ ARTICLE: "inference-recursive-combinators" "Recursive combinator stack effects"
 $nl
 "Combinators which are recursive require additional care. In addition to being declared " { $link POSTPONE: inline } ", they must be declared " { $link POSTPONE: recursive } ". There are three restrictions that only apply to combinators with this declaration:"
 { $heading "Input quotation declaration" }
-"Input parameters which are quotations must be annotated as much in the stack effect. For example, the following will not infer:"
+"Input parameters which are quotations must be annotated as such in the stack effect. For example, the following will not infer:"
 { $unchecked-example ": bad ( quot -- ) [ call ] keep bad ; inline recursive" "[ [ ] bad ] infer." "Cannot apply “call” to a run-time computed value\nmacro call" }
 "The following is correct:"
 { $example ": good ( quot: ( -- ) -- ) [ call ] keep good ; inline recursive" "[ [ ] good ] infer." "( -- )" }