remove bogus space between closing bracket an opening brace

svn: r10933
This commit is contained in:
Eli Barzilay 2008-07-27 04:53:13 +00:00
parent 49e46e0ae1
commit 8b59996cb4
2 changed files with 6 additions and 6 deletions

View File

@ -11,16 +11,16 @@
@defmethod[(get-color) (or/c string? (is-a?/c color%))]{ @defmethod[(get-color) (or/c string? (is-a?/c color%))]{
Returns the color used to draw the background part of the snip. 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. 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 Returns the location of the image and the clickable
region. The symbol @scheme['top-right] indicates top portion is 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 and icon on right. The symbol @scheme['left-top] means left portion is
clickable and icon on top. clickable and icon on top.
} }
@defmethod[(reset-min-sizes) void?] { @defmethod[(reset-min-sizes) void?]{
Sets the minimum sizes based on the result of Sets the minimum sizes based on the result of
@method[editor-snip:decorated<%> get-corner-bitmap]. @method[editor-snip:decorated<%> get-corner-bitmap].
} }
@ -37,10 +37,10 @@
"white" "white"
"black")] "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]. Returns @scheme[#f].
} }
@defmethod[(get-position) (symbols 'top-right 'left-top)] { @defmethod[(get-position) (symbols 'top-right 'left-top)]{
Returns @scheme['top-right]. Returns @scheme['top-right].
} }
} }

View File

@ -228,7 +228,7 @@
If @scheme[cs?] is @scheme[#f], the search is case-insensitive, and If @scheme[cs?] is @scheme[#f], the search is case-insensitive, and
otherwise it is case-sensitive. 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 Returns the number of hits for the search in the buffer, based on the
count found last time that a search happened. count found last time that a search happened.
} }