From f99393bac377aa76feacc4fbe1752b7373fcf8a8 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Fri, 29 Jun 2007 07:17:56 +0000 Subject: [PATCH] remove bad space svn: r6764 --- collects/scribblings/guide/module-require.scrbl | 4 ++-- collects/scribblings/reference/exns.scrbl | 2 +- collects/scribblings/reference/numbers.scrbl | 2 +- collects/scribblings/reference/regexps.scrbl | 2 +- collects/scribblings/reference/struct.scrbl | 2 +- collects/scribblings/scribble/basic.scrbl | 6 +++--- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/collects/scribblings/guide/module-require.scrbl b/collects/scribblings/guide/module-require.scrbl index e044b6ef04..adcc1187a2 100644 --- a/collects/scribblings/guide/module-require.scrbl +++ b/collects/scribblings/guide/module-require.scrbl @@ -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]. diff --git a/collects/scribblings/reference/exns.scrbl b/collects/scribblings/reference/exns.scrbl index 98a7786e30..a35aeec46c 100644 --- a/collects/scribblings/reference/exns.scrbl +++ b/collects/scribblings/reference/exns.scrbl @@ -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 diff --git a/collects/scribblings/reference/numbers.scrbl b/collects/scribblings/reference/numbers.scrbl index e11d92c2fb..42795ca3a0 100644 --- a/collects/scribblings/reference/numbers.scrbl +++ b/collects/scribblings/reference/numbers.scrbl @@ -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.} diff --git a/collects/scribblings/reference/regexps.scrbl b/collects/scribblings/reference/regexps.scrbl index 5278db5a64..cbd54dca77 100644 --- a/collects/scribblings/reference/regexps.scrbl +++ b/collects/scribblings/reference/regexps.scrbl @@ -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.} diff --git a/collects/scribblings/reference/struct.scrbl b/collects/scribblings/reference/struct.scrbl index 0af368c03b..6649ceeff0 100644 --- a/collects/scribblings/reference/struct.scrbl +++ b/collects/scribblings/reference/struct.scrbl @@ -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.} diff --git a/collects/scribblings/scribble/basic.scrbl b/collects/scribblings/scribble/basic.scrbl index 1561d09d95..6cf092ffb8 100644 --- a/collects/scribblings/scribble/basic.scrbl +++ b/collects/scribblings/scribble/basic.scrbl @@ -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.