Fix a couple mistakes.

This commit is contained in:
Greg Hendershott 2012-11-12 19:47:37 -05:00
parent bd7818fdda
commit fb4c28b12d

View File

@ -339,10 +339,10 @@ Using @racket[cdr] slices off the first item of the list,
@racket[reverse] changes it to @racket[(values "i" "am" "backwards")]: @racket[reverse] changes it to @racket[(values "i" "am" "backwards")]:
@i[ @i[
(reverse (cdr '("backwards" "am" "i" values))) (reverse (cdr '(reverse-me "backwards" "am" "i" values)))
] ]
Finally we use @racket[syntax->datum] to convert this back to Finally we use @racket[datum->syntax] to convert this back to
@racket[syntax]: @racket[syntax]:
@i[ @i[