diff --git a/collects/scribblings/framework/frame.scrbl b/collects/scribblings/framework/frame.scrbl index 76d0c987..85c9b1b1 100644 --- a/collects/scribblings/framework/frame.scrbl +++ b/collects/scribblings/framework/frame.scrbl @@ -36,15 +36,15 @@ @racketblock[ (class ... ... - (define status-panel #f) - (define/override (make-root-area-container cls parent) - (set! status-panel - (super make-root-area-container vertical-panel% parent)) - (let ([root (make-object cls status-panel)]) + (define status-panel #f) + (define/override (make-root-area-container cls parent) + (set! status-panel + (super make-root-area-container vertical-panel% parent)) + (let ([root (make-object cls status-panel)]) - (code:comment "... add other children to status-panel ...") + (code:comment "... add other children to status-panel ...") - root)) + root)) ...)] In this example, status-panel will contain a root panel for the other @@ -186,7 +186,7 @@ See also @racket[frame:setup-size-pref]. } - + @defmethod*[#:mode override (((on-size (width number?) (height number?)) void?))]{ Updates the preferences, according to the width and diff --git a/collects/scribblings/framework/splash.scrbl b/collects/scribblings/framework/splash.scrbl index 482d658e..9919cdb1 100644 --- a/collects/scribblings/framework/splash.scrbl +++ b/collects/scribblings/framework/splash.scrbl @@ -85,7 +85,7 @@ that number to control the gauge along the bottom of the splash screen. exact-nonnegative-integer? exact-nonnegative-integer? void?)]{ - Returns the callback that is invoked when redrawing the splash screen. + Returns the callback that is invoked when redrawing the splash screen. } @defproc[(set-splash-paint-callback [cb diff --git a/collects/scribblings/gui/snip-class.scrbl b/collects/scribblings/gui/snip-class.scrbl index 78054057..7df8f280 100644 --- a/collects/scribblings/gui/snip-class.scrbl +++ b/collects/scribblings/gui/snip-class.scrbl @@ -247,7 +247,7 @@ more specific equivalence comparison.}} @methspec{See @racket[equal<%>].} @methimpl{Returns @racket[1].}} - + @defmethod[(find-scroll-step [y real?]) exact-nonnegative-integer?]{ diff --git a/collects/scribblings/gui/wxme.scrbl b/collects/scribblings/gui/wxme.scrbl index a53c5006..a1af9075 100644 --- a/collects/scribblings/gui/wxme.scrbl +++ b/collects/scribblings/gui/wxme.scrbl @@ -9,11 +9,11 @@ (except-in wxme/cache-image reader))) @(define-syntax-rule (in mod . content) - (begin - (define-syntax-rule (intro) - (begin (require (for-label mod)) - . content)) - (intro))) + (begin + (define-syntax-rule (intro) + (begin (require (for-label mod)) + . content)) + (intro))) @title{WXME Decoding}