Merge branch 'master' into gh-pages

* master:
  Fix mismatch in examples. Fixes #7.
This commit is contained in:
Greg Hendershott 2014-04-03 16:54:29 -04:00
commit 43086e3029
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)
]