From a71b7ab99889a452a85f2a6dfdd8c37ff82eed42 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Mon, 5 Oct 2009 17:36:29 +0000 Subject: [PATCH] typo (PR10508) svn: r16245 --- collects/scribblings/reference/for.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/scribblings/reference/for.scrbl b/collects/scribblings/reference/for.scrbl index 43962bba8b..67085d5db7 100644 --- a/collects/scribblings/reference/for.scrbl +++ b/collects/scribblings/reference/for.scrbl @@ -330,12 +330,12 @@ and bound to the corresponding @scheme[id]s. The @scheme[id]s are bound in all expressions within the form other than the @scheme[init-expr]s. -After he @scheme[id]s are bound, then @scheme[stop?-expr] is +After the @scheme[id]s are bound, @scheme[stop?-expr] is evaluated. If it produces @scheme[#f], each @scheme[expr] is evaluated for its side-effect. The @scheme[id]s are then updated with the values of the @scheme[step-expr]s, where the default @scheme[step-expr] for @scheme[id] is just @scheme[id]. Iteration continues by evaluating -@scheme[cont?-expr]. +@scheme[stop?-expr]. When @scheme[stop?-expr] produces a true value, then the @scheme[finish-expr]s are evaluated in order, and the last one is