From 7e7cac5ffa96d48fc8278b0564ebc46b50fe5aea Mon Sep 17 00:00:00 2001 From: Sorawee Porncharoenwase Date: Thu, 23 Apr 2020 04:27:36 -0700 Subject: [PATCH] Minor typo, use #t for consistency --- pkgs/racket-doc/scribblings/reference/for.scrbl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/racket-doc/scribblings/reference/for.scrbl b/pkgs/racket-doc/scribblings/reference/for.scrbl index 9f07fa8490..c9838e25ff 100644 --- a/pkgs/racket-doc/scribblings/reference/for.scrbl +++ b/pkgs/racket-doc/scribblings/reference/for.scrbl @@ -673,7 +673,7 @@ When @racket[id] is used in any other expression position, the result of @racket[expr-transform-expr] is used. If it is a procedure of zero arguments, then the result must be an identifier @racket[_other-id], and any use of @racket[id] is converted to a use of -@racket[_other-id]. Otherwise,@racket[expr-transform-expr] must +@racket[_other-id]. Otherwise, @racket[expr-transform-expr] must produce a procedure (of one argument) that is used as a macro transformer. @@ -705,8 +705,8 @@ instead of @racket[syntax-protect]. ([i n]) (not (zero? i)) ([(j d) (quotient/remainder i 10)]) - #true - #true + #t + #t [j])]] [_ #f])))