From 6ffcad639c8fb25d00f28d17067c2d4b81f862ae Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Sat, 26 Apr 2008 20:02:02 +0000 Subject: [PATCH] fix multiple defn of big-bang svn: r9498 --- collects/teachpack/htdp/Docs/world.scrbl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/collects/teachpack/htdp/Docs/world.scrbl b/collects/teachpack/htdp/Docs/world.scrbl index a01f33f7ae..aa51fdfcf2 100644 --- a/collects/teachpack/htdp/Docs/world.scrbl +++ b/collects/teachpack/htdp/Docs/world.scrbl @@ -86,9 +86,9 @@ which is called every time your program should visualize the current world. constraints on this data definition. You can even keep it implicit, even if this violates the Design Recipe. -@deftogether[( -@defproc[(big-bang [width natural-number/c] [height natural-number/c] [r number?] [world0 (unsyntax @tech{World})]) true]{} -@defproc[(big-bang [width natural-number/c] [height natural-number/c] [r number?] [world0 (unsyntax @tech{World})][animated-gif? boolean?]) true]{} +@defproc*[( +[(big-bang [width natural-number/c] [height natural-number/c] [r number?] [world0 (unsyntax @tech{World})]) true] +[(big-bang [width natural-number/c] [height natural-number/c] [r number?] [world0 (unsyntax @tech{World})][animated-gif? boolean?]) true] )]{ Creates and displays a @scheme[width] x @scheme[height] canvas, starts the clock,