commit 69216b190a436d7e94b3a190b0440920e40b7be3
parent 5e5c8804cc1497825f6d482c26de5d74020e4d2e
Author: Greg Hendershott <greghendershott@gmail.com>
Date: Sun, 5 Jun 2016 12:27:18 -0400
Merge pull request #18 from leafac/patch-1
Fix format
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/index.rkt b/index.rkt
@@ -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: