Fix mismatch in examples. Fixes #7.

This commit is contained in:
Greg Hendershott 2014-04-03 16:52:45 -04:00
parent ee83e25307
commit 5bdc68d738
4 changed files with 9 additions and 9 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -447,11 +447,11 @@ input syntax:
(displayln stx)
]
1. We take the original syntax, and use @racket[syntax->datum] to
change it into a plain Racket @racket[list]:
1. We take the original syntax, and use @racket[syntax->list] to
change it into a @racket[list] of syntax objects:
@i[
(define xs (syntax->datum stx))
(define xs (syntax->list stx))
(displayln xs)
]