diff --git a/turnstile/scribblings/common.rkt b/turnstile/scribblings/common.rkt index be4af2f..fa1ba59 100644 --- 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 index 2076cef..2f8158a 100644 --- 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