From 68860526e578379155508816ed94a482d2ed95e9 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Sat, 21 Aug 2010 07:09:58 -0600 Subject: [PATCH] doc x-ref clarifications --- collects/scribblings/guide/namespaces.scrbl | 3 --- collects/scribblings/reference/eval.scrbl | 4 ++++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/collects/scribblings/guide/namespaces.scrbl b/collects/scribblings/guide/namespaces.scrbl index dedf47a853..fc47aacd5f 100644 --- a/collects/scribblings/guide/namespaces.scrbl +++ b/collects/scribblings/guide/namespaces.scrbl @@ -126,9 +126,6 @@ argument. More often, the namespace used by a dynamic operation is the @deftech{current namespace} as determined by the @racket[current-namespace] @tech{parameter}. -@margin-note{See @secref["parameterize"] for an introduction to -parameters.} - When @racket[eval] is used in a @tech{REPL}, the current namespace is the one that the @tech{REPL} uses for evaluating expressions. That's why the following interaction successfully accesses @racket[x] via diff --git a/collects/scribblings/reference/eval.scrbl b/collects/scribblings/reference/eval.scrbl index d46c023b57..faedf5dda6 100644 --- a/collects/scribblings/reference/eval.scrbl +++ b/collects/scribblings/reference/eval.scrbl @@ -33,6 +33,8 @@ evaluate later forms.} [namespace namespace? (current-namespace)]) any]{ +@guidealso["namespaces"] + Calls the current @tech{evaluation handler} to evaluate @racket[top-level-form]. The @tech{evaluation handler} is called in tail position with respect to the @racket[eval] call, and @@ -155,6 +157,8 @@ resolved using the value of @racket[current-directory].} @defproc[(load [file path-string?]) any]{ +@guidealso["namespaces"] + Calls the current @tech{load handler} in tail position. The call is @racket[parameterized] to set @racket[current-load-relative-directory] to the directory of @racket[file], which is resolved relative to