From a39d16fab4ae69fa113ab515ab5cde53c2393c8e Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Sun, 20 May 2012 07:36:12 -0600 Subject: [PATCH] doc layout repair --- collects/scribblings/reference/syntax-model.scrbl | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/collects/scribblings/reference/syntax-model.scrbl b/collects/scribblings/reference/syntax-model.scrbl index abafa14d80..b91473fee9 100644 --- a/collects/scribblings/reference/syntax-model.scrbl +++ b/collects/scribblings/reference/syntax-model.scrbl @@ -185,7 +185,7 @@ expanded program may not match the symbolic names in the grammar. Only the binding (according to @racket[free-identifier=?]) matters.} @racketgrammar*[ -#:literals (#%expression module #%plain-module-begin begin #%provide +#:literals (#%expression module module* #%plain-module-begin begin #%provide define-values define-syntaxes begin-for-syntax #%require #%plain-lambda case-lambda if begin begin0 let-values letrec-values @@ -201,9 +201,12 @@ the binding (according to @racket[free-identifier=?]) matters.} [module-level-form general-top-level-form (#%provide raw-provide-spec ...) (begin-for-syntax module-level-form ...) - (module id module-path module-level-form ...) - (module* id module-path module-level-form ...) - (module* id #f module-level-form ...)] + (module id module-path + module-level-form ...) + (module* id module-path + module-level-form ...) + (module* id #f + module-level-form ...)] [general-top-level-form expr (define-values (id ...) expr) (define-syntaxes (id ...) expr)