From a1b65fb0552cc80101feb32a294a88ea9301ded1 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Sun, 3 May 2009 19:33:10 +0000 Subject: [PATCH] doc corrections svn: r14696 --- collects/scribblings/inside/namespaces.scrbl | 6 +++--- collects/scribblings/reference/printer.scrbl | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/collects/scribblings/inside/namespaces.scrbl b/collects/scribblings/inside/namespaces.scrbl index 33d0728a83..c97ba9a896 100644 --- a/collects/scribblings/inside/namespaces.scrbl +++ b/collects/scribblings/inside/namespaces.scrbl @@ -29,7 +29,7 @@ A @as-index{module}'s set of top-level bindings is implemented using the same machinery as a namespace. Use @cppi{scheme_primitive_module} to create a new @cpp{Scheme_Env*} that represents a primitive module. The name provided to @cppi{scheme_primitive_module} is subject -to prefixing through the @scheme[current-module-name-prefix] parameter +to change through the @scheme[current-module-declare-name] parameter (which is normally set by the module name resolver when auto-loading module files). After installing variables into the module with @cppi{scheme_add_global}, etc., call @@ -129,8 +129,8 @@ available as @cppi{scheme_config}.} [Scheme_Object* name] [Scheme_Env* for_env])]{ -Prepares a new primitive module whose name is the symbol @var{name} (plus any - prefix that is active via @scheme[current-module-name-prefix]). The +Prepares a new primitive module whose name is the symbol @var{name} (or an + alternative that is active via @scheme[current-module-declare-name]). The module will be declared within the namespace @var{for_env}. The result is a @cpp{Scheme_Env *} value that can be used with @cpp{scheme_add_global}, etc., but it represents a module instead diff --git a/collects/scribblings/reference/printer.scrbl b/collects/scribblings/reference/printer.scrbl index 7604be6ab6..7c8eb1f1ba 100644 --- a/collects/scribblings/reference/printer.scrbl +++ b/collects/scribblings/reference/printer.scrbl @@ -208,12 +208,12 @@ unreadable values. @section[#:tag "print-hashtable"]{Printing Hash Tables} When the @scheme[print-hash-table] parameter is set to @scheme[#t], a -hash table prints starting with @litchar{#hash(} or @litchar{#hasheq(} -for a table using @scheme[equal?] or @scheme[eq?] key comparisons, +hash table prints starting with @litchar{#hash(}, @litchar{#hasheqv(}, or @litchar{#hasheq(} +for a table using @scheme[equal?], @scheme[eqv?], or @scheme[eq?] key comparisons, respectively. After this prefix, each key--value mapping is shown as @litchar{(}, the printed form of a key, a space, @litchar{.}, a space, the printed form the corresponding value, and @litchar{)}, with an -addition space if the key--value pairs is not the last to be printed. +additional space if the key--value pairs is not the last to be printed. After all key-value pairs, the printed form completes with @litchar{)}.