remove bad space
svn: r6764
This commit is contained in:
parent
2974f38f31
commit
f99393bac3
|
@ -86,7 +86,7 @@ bindings from the set specified by @scheme[require-spec].
|
|||
|
||||
@;------------------------------------------------------------------------
|
||||
@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
|
||||
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)
|
||||
(prefix require-spec prefix-id)] {
|
||||
(prefix require-spec prefix-id)]{
|
||||
|
||||
This is a shorthand for renaming, where @scheme[prefix-id] is added to
|
||||
the front each identifier specified by @scheme[require-spec].
|
||||
|
|
|
@ -117,7 +117,7 @@ the procedure. The printed form of @scheme[v] is appended to
|
|||
(or/c exact-nonnegative-integer?
|
||||
arity-at-least?)))]
|
||||
[arg-v any/c #f] ...)
|
||||
any] {
|
||||
any]{
|
||||
|
||||
Creates an @scheme[exn:fail:contract:arity] value and @scheme[raise]s
|
||||
it as an exception. The @scheme[name] is used for the source
|
||||
|
|
|
@ -180,7 +180,7 @@ noted above). Two numbers are @scheme[equal?] when they are
|
|||
|
||||
|
||||
@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])].
|
||||
Otherwise, returns the division @scheme[z] by the var[w]s
|
||||
working pairwise from left to right.}
|
||||
|
|
|
@ -300,7 +300,7 @@ positions indicate the number of bytes that were read, including
|
|||
[start-pos nonnegative-exact-integer? 0]
|
||||
[end-pos (or/c nonnegative-exact-integer? 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
|
||||
match succeeds, @scheme[#f] otherwise.}
|
||||
|
|
|
@ -455,7 +455,7 @@ is inaccessible.)}
|
|||
@scheme[define-struct], @scheme[make-struct-type], or
|
||||
@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[define-struct], @scheme[make-struct-type], or
|
||||
@scheme[make-struct-field-mutator], @scheme[#f] otherwise.}
|
||||
|
|
|
@ -118,7 +118,7 @@ and produces an element with style @scheme[style-name].
|
|||
|
||||
@defproc[(index [words (or/c string? (listof string?))]
|
||||
[pre-content any/c] ...)
|
||||
index-element?] {
|
||||
index-element?]{
|
||||
|
||||
Creates an index element given a plain-text string---or list of
|
||||
strings for a hierarchy, such as @scheme['("strings" "plain")] for a
|
||||
|
@ -133,14 +133,14 @@ refers.
|
|||
@defproc[(index* [words (listof string?)]
|
||||
[word-contents (listof list?)]
|
||||
[pre-content any/c] ...)
|
||||
index-element?] {
|
||||
index-element?]{
|
||||
Like @scheme[index], except that @scheme[words] must be a list, and
|
||||
the list of contents render in the index (in parallel to
|
||||
@scheme[words]) is supplied as @scheme[word-contents].
|
||||
}
|
||||
|
||||
@defproc[(as-index [pre-content any/c] ...)
|
||||
index-element?] {
|
||||
index-element?]{
|
||||
|
||||
Like @scheme[index], but the word to index is determined by applying
|
||||
@scheme[content->string] on the parsed @scheme[pre-content] list.
|
||||
|
|
Loading…
Reference in New Issue
Block a user