macro in example said let, not let-values

This commit is contained in:
Geoffrey Knauth 2019-07-27 22:39:05 -04:00 committed by Matthew Flatt
parent 4ba070766e
commit 63104c0dc6

View File

@ -606,7 +606,7 @@ is
@racketblock[
(define x 12)
(define-syntax m ....)
(let-values ([(x) 10]) x)
(let ([x 10]) x)
]
However, the result of the last expression is @racket[12], not