From 152b7a3ed8ff76cb06da9469f049e7052370909d Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Fri, 21 Mar 2008 12:31:23 +0000 Subject: [PATCH] fix typos svn: r9037 --- collects/scribblings/reference/sequences.scrbl | 8 ++++---- collects/scribblings/scribble/manual.scrbl | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/collects/scribblings/reference/sequences.scrbl b/collects/scribblings/reference/sequences.scrbl index bfb889f3e3..a8ec6b2b0c 100644 --- a/collects/scribblings/reference/sequences.scrbl +++ b/collects/scribblings/reference/sequences.scrbl @@ -134,12 +134,12 @@ sequence?]{ Returns a sequence that contains the elements of @scheme[#t], after which the sequence ends.} @defproc[(make-do-sequence [thunk (->* () - (values (any/c . -> . any/c) - (any/c . -> . any) + (values (any/c . -> . any) + (any/c . -> . any/c) any/c (any/c . -> . any/c) - (() list? . ->* . any/c) - ((any/c) any/c . ->* . any/c)))]) + (() () #:rest list? . ->* . any/c) + ((any/c) () #:rest list? . ->* . any/c)))]) sequence?]{ Returns a sequence whose elements are generated by the procedures and diff --git a/collects/scribblings/scribble/manual.scrbl b/collects/scribblings/scribble/manual.scrbl index 33dd90b70d..e9c7a7a444 100644 --- a/collects/scribblings/scribble/manual.scrbl +++ b/collects/scribblings/scribble/manual.scrbl @@ -634,7 +634,7 @@ Like @scheme[method], but the hyperlink shows both the method name and the containing class/interface.} @; ------------------------------------------------------------------------ -@section[#:tag "doc-signatures"]{Documenting Signature} +@section[#:tag "doc-signatures"]{Documenting Signatures} @defform[(defsignature id (super-id ...) pre-flow ...)]{