From 8b59996cb47934c8676acfdd9f16d9d812fd9bda Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Sun, 27 Jul 2008 04:53:13 +0000 Subject: [PATCH] remove bogus space between closing bracket an opening brace svn: r10933 --- collects/scribblings/framework/editor-snip.scrbl | 10 +++++----- collects/scribblings/framework/text.scrbl | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/collects/scribblings/framework/editor-snip.scrbl b/collects/scribblings/framework/editor-snip.scrbl index 198d920f0c..9912d88f7a 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 dffdf9259e..665dad2e8b 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. }