From dfc1b74d66ba7bc76d9e8a0294525b768b9749d4 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Thu, 14 Feb 2008 06:14:41 +0000 Subject: [PATCH] PR9197 svn: r8659 --- collects/scribblings/reference/pairs.scrbl | 2 +- collects/scribblings/reference/sequences.scrbl | 8 ++++---- collects/scribblings/scribble/manual.scrbl | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/collects/scribblings/reference/pairs.scrbl b/collects/scribblings/reference/pairs.scrbl index ca8aa686f4..6c5ef13355 100644 --- a/collects/scribblings/reference/pairs.scrbl +++ b/collects/scribblings/reference/pairs.scrbl @@ -91,7 +91,7 @@ containing the @scheme[v]s as its elements.} @defproc[(list* [v any/c] ... [tail any/c]) any/c]{ Like @scheme[list], but the last argument is used as the tail of -the result, insteda of the final element. The result is a list +the result, instead of the final element. The result is a list only if the last argument is a list.} @defproc[(build-list [n exact-nonnegative-integer?] diff --git a/collects/scribblings/reference/sequences.scrbl b/collects/scribblings/reference/sequences.scrbl index 7bba036b67..1353851978 100644 --- a/collects/scribblings/reference/sequences.scrbl +++ b/collects/scribblings/reference/sequences.scrbl @@ -125,13 +125,13 @@ supplied @scheme[seq]s; the values, in order, are the values of each sequence?]{ Returns a sequence that contains the elements of @scheme[seq] (which must be single-valued), but only until the last element for which applying @scheme[pred] to the element produces -@scheme[#t], after whcih the sequence ends.} +@scheme[#t], after which the sequence ends.} @defproc[(stop-after [seq sequence?] [pred (any/c . -> . any)]) sequence?]{ Returns a sequence that contains the elements of @scheme[seq] (which must be single-valued), but only until the element (inclusive) for which applying @scheme[pred] to the element produces -@scheme[#t], after whcih the sequence ends.} +@scheme[#t], after which the sequence ends.} @defproc[(make-do-sequence [thunk (->* () ((any/c . -> . any/c) @@ -143,7 +143,7 @@ sequence?]{ Returns a sequence that contains the elements of sequence?]{ Returns a sequence whose elements are generated by the procedures and -initial value returned by the thunk. The enerator is defined in terms +initial value returned by the thunk. The generator is defined in terms of a @defterm{position}, which is initialized to the third result of the thunk, and the @defterm{element}, which may consist of multiple values. @@ -163,7 +163,7 @@ The @scheme[thunk] results define the generated elements as follows: @item{The fourth result takes the current element value(s) and returns a true result if the sequence includes the value, and - false result if the sequenec should insteda end insteda of + false if the sequence should end instead of including the value.} @item{The fifth result is like the fourth result, but it determines a diff --git a/collects/scribblings/scribble/manual.scrbl b/collects/scribblings/scribble/manual.scrbl index 137e369bf1..c2ae09708a 100644 --- a/collects/scribblings/scribble/manual.scrbl +++ b/collects/scribblings/scribble/manual.scrbl @@ -742,7 +742,7 @@ in HTML without an underline.} [pre-content any/c] ...) element?]{ Like @scheme[secref], but the link label is the @tech{decode}d -@scheme[pre-content] insteda of the target section's name.} +@scheme[pre-content] instead of the target section's name.} @defproc[(other-manual [module-path module-path?] [#:underline? underline? any/c #t])