From 958ad908ab9d34ec1c8e752f78d0729623de5487 Mon Sep 17 00:00:00 2001 From: Kevin Tew Date: Thu, 20 Oct 2011 15:33:03 -0600 Subject: [PATCH] place scrbl fix --- collects/scribblings/reference/places.scrbl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/collects/scribblings/reference/places.scrbl b/collects/scribblings/reference/places.scrbl index a45dd972af..d05f49de8b 100644 --- a/collects/scribblings/reference/places.scrbl +++ b/collects/scribblings/reference/places.scrbl @@ -113,11 +113,11 @@ are simulated using @racket[thread].} @defproc[(dynamic-place [module-path (or/c module-path? path?)] - [start-proc symbol?]) + [start-name symbol?]) place?]{ Creates a @tech{place} to run the procedure that is identified by - @racket[module-path] and @racket[start-proc]. The result is a + @racket[module-path] and @racket[start-name]. The result is a @tech{place descriptor} value that represents the new parallel task; the place descriptor is returned immediately. The place descriptor value is also a @tech{place channel} that permits communication with @@ -156,7 +156,7 @@ are simulated using @racket[thread].} @defproc[(dynamic-place* [module-path (or/c module-path? path?)] - [start-proc symbol?] + [start-name symbol?] [#:in in (or/c input-port? #f) #f] [#:out out (or/c output-port? #f) (current-output-port)] [#:err err (or/c output-port? #f) (current-error-port)])