commit 384e4962cd9d7f6a40c4d78636abda00fd029665
parent 2b6c1964c81d2fc5cc7f552dcea2eecea516a871
Author: Stephen Chang <stchang@ccs.neu.edu>
Date: Mon, 26 Sep 2016 14:48:30 -0400
docs: better link for stx template
Diffstat:
2 files changed, 8 insertions(+), 5 deletions(-)
diff --git a/turnstile/scribblings/common.rkt b/turnstile/scribblings/common.rkt
@@ -1,15 +1,18 @@
#lang racket/base
(provide (all-defined-out))
-(require scribble/manual)
+(require scribble/manual
+ (for-label racket/base))
(define tech:stx-pats
(tech #:doc '(lib "syntax/scribblings/syntax.scrbl") "syntax patterns"))
(define tech:stx-pat
(tech #:doc '(lib "syntax/scribblings/syntax.scrbl") "syntax pattern"))
(define tech:stx-templates
- (list "syntax " (tech #:doc '(lib "scribblings/guide/guide.scrbl") "templates")))
+ (list (racket syntax) " "
+ (tech #:doc '(lib "scribblings/guide/guide.scrbl") "templates")))
(define tech:stx-template
- (list "syntax " (tech #:doc '(lib "scribblings/guide/guide.scrbl") "template")))
+ (list (racket syntax) " "
+ (tech #:doc '(lib "scribblings/guide/guide.scrbl") "template")))
(define tech:templates
(tech #:doc '(lib "scribblings/guide/guide.scrbl") "templates"))
(define tech:template
diff --git a/turnstile/scribblings/guide.scrbl b/turnstile/scribblings/guide.scrbl
@@ -408,4 +408,4 @@ function, which is needed by conditional forms like @racket[if]. The
@racket[if] definition uses the @racket[current-join] parameter, to
make it reusable by other languages. Observe that the output type in the
@racket[if] definition uses @racket[unquote]. In general, all @tech:stx-template
-positions in Turnstile as @racket[quasiquote]s.
-\ No newline at end of file
+positions in Turnstile are @racket[quasisyntax]es.
+\ No newline at end of file