www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit fb4c28b12d5b416e83ba1281a0bb7c574b29aeb6
parent bd7818fdda22d22be7c61522fe24e641c39be437
Author: Greg Hendershott <greghendershott@gmail.com>
Date:   Mon, 12 Nov 2012 19:47:37 -0500

Fix a couple mistakes.

Diffstat:
Mmain.rkt | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/main.rkt b/main.rkt @@ -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")]: @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]: @i[