From c2e68cba46beb0b0a313c6229b89667b87f16554 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Sun, 11 Jan 2009 15:23:13 +0000 Subject: [PATCH] fix typo in example (PR 10018) svn: r13066 original commit: 72b272ebd01f6ded5fbd0177827824b432dcbcd4 --- 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 84a55aa0..5bb75cfd 100644 --- a/collects/scribblings/gui/win-overview.scrbl +++ b/collects/scribblings/gui/win-overview.scrbl @@ -355,8 +355,8 @@ with the following program: [alignment '(center center)])) (code:comment #, @t{Add @onscreen{Cancel} and @onscreen{Ok} buttons to the horizontal panel}) -(new button% [parent parent] [label "Cancel"]) -(new button% [parent parent] [label "Ok"]) +(new button% [parent panel] [label "Cancel"]) +(new button% [parent panel] [label "Ok"]) (code:comment #, @t{Show the dialog}) (send dialog #,(:: dialog% show) #t)