From 9c88dc49b2a50973e301815405c7bc57caf43d72 Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Sat, 6 Mar 2010 14:08:25 +0000 Subject: [PATCH] minor cleanup to make parsing the docs easier svn: r18483 --- collects/scribblings/gui/pasteboard-class.scrbl | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/collects/scribblings/gui/pasteboard-class.scrbl b/collects/scribblings/gui/pasteboard-class.scrbl index 36f8759fb3..62a3cf63c9 100644 --- a/collects/scribblings/gui/pasteboard-class.scrbl +++ b/collects/scribblings/gui/pasteboard-class.scrbl @@ -457,16 +457,16 @@ Returns @scheme[#t]. @defmethod*[#:mode override - ([(change-style [style (or/c (is-a?/c style<%>) false/c)] - [snip (or/c (is-a?/c snip%) false/c) #f]) - void?] - [(change-style [delta (or/c (is-a?/c style-delta%) false/c)] - [snip (is-a?/c snip%) #f]) + ([(change-style [style (or/c (is-a?/c style-delta%) (is-a?/c style<%>) #f)] + [snip (or/c (is-a?/c snip%) #f) #f]) void?])]{ -Changes the style of @scheme[style] to a specific style or by applying +Changes the style of @scheme[snip] to a specific style or by applying a style delta. If @scheme[snip] is @scheme[#f], then all currently - selected snips are changed. See also @xmethod[editor<%> change-style]. + selected snips are changed. If @scheme[style] is @scheme[#f], then + the default style is used, according to @method[editor<%> default-style-name]. + + See also @xmethod[editor<%> change-style]. When a @scheme[style] is provided: @InStyleListNote[@scheme[style]]