fix typos

svn: r9037
This commit is contained in:
Matthew Flatt 2008-03-21 12:31:23 +00:00
parent a0e73d3375
commit 152b7a3ed8
2 changed files with 5 additions and 5 deletions

View File

@ -134,12 +134,12 @@ sequence?]{ Returns a sequence that contains the elements of
@scheme[#t], after which the sequence ends.} @scheme[#t], after which the sequence ends.}
@defproc[(make-do-sequence [thunk (->* () @defproc[(make-do-sequence [thunk (->* ()
(values (any/c . -> . any/c) (values (any/c . -> . any)
(any/c . -> . any) (any/c . -> . any/c)
any/c any/c
(any/c . -> . any/c) (any/c . -> . any/c)
(() list? . ->* . any/c) (() () #:rest list? . ->* . any/c)
((any/c) any/c . ->* . any/c)))]) ((any/c) () #:rest list? . ->* . any/c)))])
sequence?]{ sequence?]{
Returns a sequence whose elements are generated by the procedures and Returns a sequence whose elements are generated by the procedures and

View File

@ -634,7 +634,7 @@ Like @scheme[method], but the hyperlink shows both the method name and
the containing class/interface.} the containing class/interface.}
@; ------------------------------------------------------------------------ @; ------------------------------------------------------------------------
@section[#:tag "doc-signatures"]{Documenting Signature} @section[#:tag "doc-signatures"]{Documenting Signatures}
@defform[(defsignature id (super-id ...) pre-flow ...)]{ @defform[(defsignature id (super-id ...) pre-flow ...)]{