remove bad space

svn: r6764
This commit is contained in:
Eli Barzilay 2007-06-29 07:17:56 +00:00
parent 2974f38f31
commit f99393bac3
6 changed files with 9 additions and 9 deletions

View File

@ -86,7 +86,7 @@ bindings from the set specified by @scheme[require-spec].
@;------------------------------------------------------------------------ @;------------------------------------------------------------------------
@specspecsubform[#:literals (rename) @specspecsubform[#:literals (rename)
(rename require-spec [orig-id bind-id] ...)] { (rename require-spec [orig-id bind-id] ...)]{
The form supports renaming like @scheme[only], but leaving alone The form supports renaming like @scheme[only], but leaving alone
identifiers from @scheme[require-spec] that are not mentioned as an identifiers from @scheme[require-spec] that are not mentioned as an
@ -94,7 +94,7 @@ identifiers from @scheme[require-spec] that are not mentioned as an
@;------------------------------------------------------------------------ @;------------------------------------------------------------------------
@specspecsubform[#:literals (prefix) @specspecsubform[#:literals (prefix)
(prefix require-spec prefix-id)] { (prefix require-spec prefix-id)]{
This is a shorthand for renaming, where @scheme[prefix-id] is added to This is a shorthand for renaming, where @scheme[prefix-id] is added to
the front each identifier specified by @scheme[require-spec]. the front each identifier specified by @scheme[require-spec].

View File

@ -117,7 +117,7 @@ the procedure. The printed form of @scheme[v] is appended to
(or/c exact-nonnegative-integer? (or/c exact-nonnegative-integer?
arity-at-least?)))] arity-at-least?)))]
[arg-v any/c #f] ...) [arg-v any/c #f] ...)
any] { any]{
Creates an @scheme[exn:fail:contract:arity] value and @scheme[raise]s Creates an @scheme[exn:fail:contract:arity] value and @scheme[raise]s
it as an exception. The @scheme[name] is used for the source it as an exception. The @scheme[name] is used for the source

View File

@ -180,7 +180,7 @@ noted above). Two numbers are @scheme[equal?] when they are
@defproc*[([(/ [z number?]) number?] @defproc*[([(/ [z number?]) number?]
[(/ [z number?] [w number?] ...+) number?])] { [(/ [z number?] [w number?] ...+) number?])]{
When no @scheme[w]s are supplied, returns @scheme[(/ 1 #, @scheme[z])]. When no @scheme[w]s are supplied, returns @scheme[(/ 1 #, @scheme[z])].
Otherwise, returns the division @scheme[z] by the var[w]s Otherwise, returns the division @scheme[z] by the var[w]s
working pairwise from left to right.} working pairwise from left to right.}

View File

@ -300,7 +300,7 @@ positions indicate the number of bytes that were read, including
[start-pos nonnegative-exact-integer? 0] [start-pos nonnegative-exact-integer? 0]
[end-pos (or/c nonnegative-exact-integer? false/c) #f] [end-pos (or/c nonnegative-exact-integer? false/c) #f]
[output-port (or/c output-port? false/c) #f]) [output-port (or/c output-port? false/c) #f])
boolean?] { boolean?]{
Like @scheme[regexp-match], but returns merely @scheme[#t] when the Like @scheme[regexp-match], but returns merely @scheme[#t] when the
match succeeds, @scheme[#f] otherwise.} match succeeds, @scheme[#f] otherwise.}

View File

@ -455,7 +455,7 @@ is inaccessible.)}
@scheme[define-struct], @scheme[make-struct-type], or @scheme[define-struct], @scheme[make-struct-type], or
@scheme[make-struct-field-accessor], @scheme[#f] otherwise.} @scheme[make-struct-field-accessor], @scheme[#f] otherwise.}
@defproc[(struct-mutator-procedure? [v any/c]) boolean?] {Returns @defproc[(struct-mutator-procedure? [v any/c]) boolean?]{Returns
@scheme[#t] if @scheme[v] is a mutator procedure generated by @scheme[#t] if @scheme[v] is a mutator procedure generated by
@scheme[define-struct], @scheme[make-struct-type], or @scheme[define-struct], @scheme[make-struct-type], or
@scheme[make-struct-field-mutator], @scheme[#f] otherwise.} @scheme[make-struct-field-mutator], @scheme[#f] otherwise.}

View File

@ -118,7 +118,7 @@ and produces an element with style @scheme[style-name].
@defproc[(index [words (or/c string? (listof string?))] @defproc[(index [words (or/c string? (listof string?))]
[pre-content any/c] ...) [pre-content any/c] ...)
index-element?] { index-element?]{
Creates an index element given a plain-text string---or list of Creates an index element given a plain-text string---or list of
strings for a hierarchy, such as @scheme['("strings" "plain")] for a strings for a hierarchy, such as @scheme['("strings" "plain")] for a
@ -133,14 +133,14 @@ refers.
@defproc[(index* [words (listof string?)] @defproc[(index* [words (listof string?)]
[word-contents (listof list?)] [word-contents (listof list?)]
[pre-content any/c] ...) [pre-content any/c] ...)
index-element?] { index-element?]{
Like @scheme[index], except that @scheme[words] must be a list, and Like @scheme[index], except that @scheme[words] must be a list, and
the list of contents render in the index (in parallel to the list of contents render in the index (in parallel to
@scheme[words]) is supplied as @scheme[word-contents]. @scheme[words]) is supplied as @scheme[word-contents].
} }
@defproc[(as-index [pre-content any/c] ...) @defproc[(as-index [pre-content any/c] ...)
index-element?] { index-element?]{
Like @scheme[index], but the word to index is determined by applying Like @scheme[index], but the word to index is determined by applying
@scheme[content->string] on the parsed @scheme[pre-content] list. @scheme[content->string] on the parsed @scheme[pre-content] list.