We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d9bdb4 commit 4cd1e2aCopy full SHA for 4cd1e2a
1 file changed
gui-doc/scribblings/framework/frame.scrbl
@@ -62,15 +62,13 @@
62
@method[top-level-window<%> show]
63
methods.
64
65
- It's implementation is:
+ Its implementation is:
66
@racketblock[
67
(inherit can-close? on-close)
68
- (public
69
- [show
70
- (lambda ()
71
- (when (can-close?)
72
- (on-close)
73
- (show #f)))])]
+ (define/public (show)
+ (when (can-close?)
+ (on-close)
+ (show #f)))]
74
75
}
76
@defmethod*[(((editing-this-file? (filename path?)) boolean?))]{
0 commit comments