From 80ae3394aad01169cc5d29ea25f7a6e5f245ac0a Mon Sep 17 00:00:00 2001 From: Paulo Matos Date: Tue, 6 Mar 2018 09:17:49 -0700 Subject: [PATCH] Update function name Function reference `supervise-named-dynamic-place-at` should be `supervise-place-at`. --- pkgs/racket-doc/scribblings/guide/distributed.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/racket-doc/scribblings/guide/distributed.scrbl b/pkgs/racket-doc/scribblings/guide/distributed.scrbl index 510c200d31..0a6d35f893 100644 --- a/pkgs/racket-doc/scribblings/guide/distributed.scrbl +++ b/pkgs/racket-doc/scribblings/guide/distributed.scrbl @@ -41,7 +41,7 @@ The @racket[spawn-remote-racket-node] primitive connects to assigned to the @racket[remote-node] variable. Localhost is used so that the example can be run using only a single machine. However localhost can be replaced by any host with ssh publickey access and racket. The -@racket[supervise-named-dynamic-place-at] creates a new place on the +@racket[supervise-place-at] creates a new place on the @racket[remote-node]. The new place will be identified in the future by its name symbol @racket['tuple-server]. A place descriptor is expected to be returned by invoking @racket[dynamic-place] with the @@ -51,7 +51,7 @@ symbol. The code for the tuple-server place exists in the file @filepath{tuple.rkt}. The @filepath{tuple.rkt} file contains the use of @racket[define-named-remote-server] form, which defines a RPC server -suitable for invocation by @racket[supervise-named-dynamic-place-at]. +suitiable for invocation by @racket[supervise-place-at].