diff --git a/collects/scribblings/framework/frame.scrbl b/collects/scribblings/framework/frame.scrbl index bd5dd989..f7566989 100644 --- a/collects/scribblings/framework/frame.scrbl +++ b/collects/scribblings/framework/frame.scrbl @@ -541,7 +541,7 @@ - Calls @scheme[(make-object @method[frame:editor<%> get-editor%])]. + Calls @scheme[(make-object #, @method[frame:editor<%> get-editor%])]. } @defmethod*[(((revert) void))]{ @@ -794,7 +794,7 @@ } @defmethod*[#:mode override (((get-editor<%>) interface))]{ - Returns @scheme[(class->interface @scheme[text%])]. + Returns @scheme[(class->interface text%)]. } } @definterface[frame:pasteboard<%> (frame:editor<%>)]{ @@ -812,7 +812,7 @@ } @defmethod*[#:mode override (((get-editor<%>) interface))]{ - Returns @scheme[(class->interface @scheme[pasteboard%])]. + Returns @scheme[(class->interface pasteboard%)]. } } @definterface[frame:delegate<%> (frame:status-line<%> frame:text<%>)]{ diff --git a/collects/scribblings/gui/snip-class.scrbl b/collects/scribblings/gui/snip-class.scrbl index 01728a18..d8f94577 100644 --- a/collects/scribblings/gui/snip-class.scrbl +++ b/collects/scribblings/gui/snip-class.scrbl @@ -551,7 +551,7 @@ The @scheme[x] and @scheme[y] arguments are the snip's @scheme[editorx] and @scheme[editory] arguments are the snip's @techlink{location} in editor coordinates. To get @scheme[event]'s x @techlink{location} in snip coordinates, subtract @scheme[x] from - @scheme[(send @scheme[event] get-x)]. + @scheme[(send event get-x)]. See also @indexed-scheme['handles-events] in @method[snip% get-flags]. @@ -581,7 +581,7 @@ The @scheme[x] and @scheme[y] arguments are the snip's @scheme[editorx] and @scheme[editory] arguments are the snip's @techlink{location} in editor coordinates. To get @scheme[event]'s x @techlink{location} in snip coordinates, subtract @scheme[x] from - @scheme[(send @scheme[event] get-x)]. + @scheme[(send event get-x)]. See also @indexed-scheme['handles-events] in @method[snip% get-flags]. diff --git a/collects/scribblings/gui/text-field-class.scrbl b/collects/scribblings/gui/text-field-class.scrbl index b0e70363..e8d1140b 100644 --- a/collects/scribblings/gui/text-field-class.scrbl +++ b/collects/scribblings/gui/text-field-class.scrbl @@ -103,13 +103,13 @@ For a text field, the most useful methods of a @scheme[text%] object are the following: @itemize{ - @item{@scheme[(send a-text @method[text% get-text])] returns + @item{@scheme[(send a-text #, @method[text% get-text])] returns the current text of the editor.} - @item{@scheme[(send a-text @method[text% erase])] deletes all text from + @item{@scheme[(send a-text #, @method[text% erase])] deletes all text from the editor.} - @item{@scheme[(send a-text @method[text% insert] _str)] inserts + @item{@scheme[(send a-text #, @method[text% insert] _str)] inserts @scheme[_str] into the editor at the current caret position.} }