diff --git a/collects/scribblings/framework/editor-snip.scrbl b/collects/scribblings/framework/editor-snip.scrbl index 198d920f..9912d88f 100644 --- a/collects/scribblings/framework/editor-snip.scrbl +++ b/collects/scribblings/framework/editor-snip.scrbl @@ -11,16 +11,16 @@ @defmethod[(get-color) (or/c string? (is-a?/c color%))]{ Returns the color used to draw the background part of the snip. } - @defmethod[(get-menu) (or/c false/c (is-a?/c popup-menu%))] { + @defmethod[(get-menu) (or/c false/c (is-a?/c popup-menu%))]{ Returns a popup menu that is used when clicking on the top part of the snip. } - @defmethod[(get-position) (symbols 'top-right 'left-top)] { + @defmethod[(get-position) (symbols 'top-right 'left-top)]{ Returns the location of the image and the clickable region. The symbol @scheme['top-right] indicates top portion is clickable and icon on right. The symbol @scheme['left-top] means left portion is clickable and icon on top. } - @defmethod[(reset-min-sizes) void?] { + @defmethod[(reset-min-sizes) void?]{ Sets the minimum sizes based on the result of @method[editor-snip:decorated<%> get-corner-bitmap]. } @@ -37,10 +37,10 @@ "white" "black")] } - @defmethod[(get-menu) (or/c false/c (is-a?/c popup-menu%))] { + @defmethod[(get-menu) (or/c false/c (is-a?/c popup-menu%))]{ Returns @scheme[#f]. } - @defmethod[(get-position) (symbols 'top-right 'left-top)] { + @defmethod[(get-position) (symbols 'top-right 'left-top)]{ Returns @scheme['top-right]. } } diff --git a/collects/scribblings/framework/text.scrbl b/collects/scribblings/framework/text.scrbl index dffdf925..665dad2e 100644 --- a/collects/scribblings/framework/text.scrbl +++ b/collects/scribblings/framework/text.scrbl @@ -228,7 +228,7 @@ If @scheme[cs?] is @scheme[#f], the search is case-insensitive, and otherwise it is case-sensitive. } -@defmethod[(get-search-hits) number?] { +@defmethod[(get-search-hits) number?]{ Returns the number of hits for the search in the buffer, based on the count found last time that a search happened. }