fixed typo in universe.ss

svn: r16792
This commit is contained in:
Matthias Felleisen 2009-11-16 00:13:57 +00:00
parent b50aee633f
commit 66ae1bea49

View File

@ -1078,12 +1078,12 @@ Once you have designed a world program, add a function definition
(define (main n)
(big-bang ... (name n) ...))
))
Then in DrScheme's Interactions area, use @scheme[launch-with-many-worlds]
Then in DrScheme's Interactions area, use @scheme[launch-many-worlds]
to create several distinctively named worlds:
@(begin
#reader scribble/comment-reader
(schemeblock
> (launch-with-many-worlds (main "matthew")
> (launch-many-worlds (main "matthew")
(main "kathi")
(main "h3"))
10