From 126e83422eb5d3ac38e3baec1cef0dad8b7e3570 Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Mon, 9 Jun 2008 22:49:06 +0000 Subject: [PATCH] fixed some portos svn: r10200 original commit: 6be1c69e3212d34859d1948fe3d4d297c2ea7cfa --- collects/scribblings/framework/group.scrbl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/collects/scribblings/framework/group.scrbl b/collects/scribblings/framework/group.scrbl index b0128b24..a0c09280 100644 --- a/collects/scribblings/framework/group.scrbl +++ b/collects/scribblings/framework/group.scrbl @@ -21,12 +21,12 @@ } - @defmethod*[(((get-open-here-frame) (union |#f| (is-a?/c frame:editor<%>))))]{ + @defmethod*[(((get-open-here-frame) (or/c false/c (is-a?/c frame:editor<%>))))]{ Returns the currently saved frame to load new files into. } - @defmethod*[(((get-mdi-parent) (union |#f| (instance frame%))))]{ + @defmethod*[(((get-mdi-parent) (or/c false/c (instance frame%))))]{ The result of this method must be used as the parent frame for each frame in the group. @@ -115,8 +115,8 @@ @method[top-level-window<%> can-close?] method of each frame in the group. } - @defmethod*[(((locate-file) (union |#f| (is-a?/c frame:basic<%>))))]{ - Returns the frame that is editing or viewing a particular file. + @defmethod*[(((locate-file [name path?]) (or/c false/c (is-a?/c frame:basic<%>))))]{ + Returns the frame that is editing or viewing the file @scheme[name]. } }