Merge pull request #18 from leafac/patch-1

Fix format
This commit is contained in:
Greg Hendershott 2016-06-05 12:27:18 -04:00
commit 69216b190a

View File

@ -213,7 +213,7 @@ which is @tt{#'}:
(quoted-foo)
]
We'll use the #' shorthand from now on.
We'll use the @tt{#'} shorthand from now on.
Of course, we can emit syntax that is more interesting than a
string literal. How about returning @racket[(displayln "hi")]?
@ -720,7 +720,7 @@ work it out. The "template" the error message refers to is the
In fact, @racket[syntax-case] can have as many templates as you
want. The obvious, required template is the final expression supplying
the output syntax. But you can use @racket[syntax] (a.k.a. #') on a
the output syntax. But you can use @racket[syntax] (a.k.a. @tt{#'}) on a
pattern variable. This makes another template, albeit a small, "fun
size" template. Let's try that: