svn: r8659
This commit is contained in:
Eli Barzilay 2008-02-14 06:14:41 +00:00
parent a191b1e7e9
commit dfc1b74d66
3 changed files with 6 additions and 6 deletions

View File

@ -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?]

View File

@ -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

View File

@ -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])