From 854211592abda3320b115b52a0da9190d978a9dd Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Sun, 15 Jun 2008 20:34:12 +0000 Subject: [PATCH] Fixed references to text% in editor-canvas docs. svn: r10274 --- collects/scribblings/gui/editor-canvas-class.scrbl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/collects/scribblings/gui/editor-canvas-class.scrbl b/collects/scribblings/gui/editor-canvas-class.scrbl index f0919cc391..41f75c2874 100644 --- a/collects/scribblings/gui/editor-canvas-class.scrbl +++ b/collects/scribblings/gui/editor-canvas-class.scrbl @@ -9,7 +9,7 @@ An @scheme[editor-canvas%] object manages and displays a @defconstructor[([parent (or/c (is-a?/c frame%) (is-a?/c dialog%) (is-a?/c panel%) (is-a?/c pane%))] - [editor (or/c (or/c @scheme[text%] (is-a?/c pasteboard%)) false/c) #f] + [editor (or/c (or/c (is-a?/c text%) (is-a?/c pasteboard%)) false/c) #f] [style (listof (one-of/c 'no-border 'control-border 'combo 'no-hscroll 'no-vscroll 'hide-hscroll 'hide-vscroll @@ -157,7 +157,7 @@ Enables or disables force-focus mode. In force-focus mode, the caret @defmethod[(get-editor) - (or/c (or/c @scheme[text%] (is-a?/c pasteboard%)) false/c)]{ + (or/c (or/c (is-a?/c text%) (is-a?/c pasteboard%)) false/c)]{ Returns the editor currently displayed by this canvas, or @scheme[#f] if the canvas does not have an editor. @@ -307,7 +307,7 @@ Enables or disables bottom-base scrolling, or gets the current enable -@defmethod[(set-editor [edit (or/c (or/c @scheme[text%] (is-a?/c pasteboard%)) false/c)] +@defmethod[(set-editor [edit (or/c (or/c (is-a?/c text%) (is-a?/c pasteboard%)) false/c)] [redraw? any/c #t]) void?]{