From 79fbc970aaf4cf070f914ab7c761c30f94aea7db Mon Sep 17 00:00:00 2001 From: John Clements Date: Thu, 29 Sep 2011 21:10:43 -0700 Subject: [PATCH] minor doc updates --- collects/scribblings/guide/places.scrbl | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/collects/scribblings/guide/places.scrbl b/collects/scribblings/guide/places.scrbl index f0bafd87e5..bab54ebdfe 100644 --- a/collects/scribblings/guide/places.scrbl +++ b/collects/scribblings/guide/places.scrbl @@ -37,9 +37,8 @@ the list: (place-channel-put ch l-double?))) (place-channel-put p (list 1 2 4 8)) - (begin0 - (place-channel-get p)) - (place-wait p)) + + (place-channel-get p)) } The identifier @racket[ch] after @racket[place] is bound to a @deftech{place @@ -73,7 +72,7 @@ must be available in the module's top level. Second, the @racket[place] form @racket[dynamic-require]s the enclosing module in a newly created place. As part of the @racket[dynamic-require], the current module body is evaluated in the new place. The consequence of -this second feature is that @racket[place] should appear immediately +this second feature is that @racket[place] should not appear immediately in a module or in a function that is called in a module's top level; otherwise, invoking the module will invoke the same module in a new place, and so on, triggering a cascade of place creations that will