From a8a0835fc1d19ff123d9208ebc4da21c73dd2cd1 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Mon, 25 Jun 2012 23:29:25 -0600 Subject: [PATCH] fix doc typo --- collects/scribblings/gui/win-overview.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/scribblings/gui/win-overview.scrbl b/collects/scribblings/gui/win-overview.scrbl index edcaf4e6bc..8d5670eedd 100644 --- a/collects/scribblings/gui/win-overview.scrbl +++ b/collects/scribblings/gui/win-overview.scrbl @@ -44,8 +44,8 @@ The built-in classes provide various mechanisms for handling GUI (new button% [parent frame] [label "Click Me"] (code:comment @#,t{Callback procedure for a button click:}) - (callback (lambda (button event) - (send msg #,(method message% set-label) "Button click")))) + [callback (lambda (button event) + (send msg #,(method message% set-label) "Button click"))]) (code:comment @#,t{Show the frame by calling its @racket[show] method}) (send frame #,(:: top-level-window<%> show) #t)