diff --git a/collects/scribblings/framework/frame.scrbl b/collects/scribblings/framework/frame.scrbl index eb14bbad1f..b6244be876 100644 --- a/collects/scribblings/framework/frame.scrbl +++ b/collects/scribblings/framework/frame.scrbl @@ -771,7 +771,7 @@ } @defmethod*[#:mode override (((get-editor<%>) interface))]{ - Returns @racket[text:delegate]. + Returns @racket[text:delegate<%>]. } @defmethod*[#:mode override (((get-editor%) (is-a?/c text:delegate<%>)))]{ diff --git a/collects/scribblings/reference/printer.scrbl b/collects/scribblings/reference/printer.scrbl index c15d0ebbcc..8f7609ab85 100644 --- a/collects/scribblings/reference/printer.scrbl +++ b/collects/scribblings/reference/printer.scrbl @@ -527,7 +527,7 @@ representation. @tech{Unreadable symbols}, which are typically generated indirectly during expansion and compilation, are saved and restored consistently through @litchar{#~}. -The dynamic nature @tech{uninterned} symbols and their localization +The dynamic nature of @tech{uninterned} symbols and their localization within @litchar{#~} can cause problems when @racket[gensym] or @racket[string->uninterned-symbol] is used to construct an identifier for a top-level or module binding (depending on how the identifier and diff --git a/collects/syntax/scribblings/parse/ex-mods-stxclasses.scrbl b/collects/syntax/scribblings/parse/ex-mods-stxclasses.scrbl index e5f5c3d4dd..5863e8941f 100644 --- a/collects/syntax/scribblings/parse/ex-mods-stxclasses.scrbl +++ b/collects/syntax/scribblings/parse/ex-mods-stxclasses.scrbl @@ -72,7 +72,7 @@ class in a separate module and require that module (macro (1 2 3)) ] -If a syntax classes refers to literal identifiers, or if it computes +If a syntax class refers to literal identifiers, or if it computes expressions via syntax templates, then the module containing the syntax class must generally require @racket[for-template] the bindings referred to in the patterns and templates.