Minor typo, use #t for consistency

This commit is contained in:
Sorawee Porncharoenwase 2020-04-23 04:27:36 -07:00 committed by Sam Tobin-Hochstadt
parent 43dd872689
commit 7e7cac5ffa

View File

@ -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])))