remove bad space

svn: r6764

original commit: f99393bac377aa76feacc4fbe1752b7373fcf8a8
This commit is contained in:
Eli Barzilay 2007-06-29 07:17:56 +00:00
parent e004737d66
commit 89f5bde7ba

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.