From 34c14d27f55e08c3d47882b7f7334dd2fada1343 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Thu, 26 Mar 2009 12:00:13 +0000 Subject: [PATCH] typo svn: r14288 --- collects/scribblings/gui/text-class.scrbl | 10 +++++----- collects/scribblings/reference/filesystem.scrbl | 10 +++++----- collects/scribblings/reference/windows-paths.scrbl | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/collects/scribblings/gui/text-class.scrbl b/collects/scribblings/gui/text-class.scrbl index 4f5b7890af..038d2b9018 100644 --- a/collects/scribblings/gui/text-class.scrbl +++ b/collects/scribblings/gui/text-class.scrbl @@ -350,8 +350,8 @@ When @scheme[style] is provided: @InStyleListNote[@scheme[style]] @defmethod[#:mode extend - (copy [extend? any/c] - [time (and/c exact? integer?)] + (copy [extend? any/c #f] + [time (and/c exact? integer?) 0] [start (or/c exact-nonnegative-integer? (one/of 'start)) 'start] [end (or/c exact-nonnegative-integer? (one/of 'end)) 'end]) void?]{ @@ -381,8 +381,8 @@ In addition to the default @xmethod[editor<%> copy-self-to] work, @defmethod[#:mode override - (cut [extend? any/c] - [time (and/c exact? integer?)] + (cut [extend? any/c #f] + [time (and/c exact? integer?) 0] [start (or/c exact-nonnegative-integer? (one/of 'start)) 'start] [end (or/c exact-nonnegative-integer? (one/of 'end)) 'end]) void?]{ @@ -1547,7 +1547,7 @@ If the paragraph starts with invisible @techlink{item}s and @scheme[visible?] is @defmethod[#:mode override - (paste [time (and/c exact? integer?)] + (paste [time (and/c exact? integer?) 0] [start (or/c exact-nonnegative-integer? (one/of 'end)) 'end] [end (or/c exact-nonnegative-integer? (one/of 'same)) 'same]) void?]{ diff --git a/collects/scribblings/reference/filesystem.scrbl b/collects/scribblings/reference/filesystem.scrbl index a64df6bb2a..0f585df937 100644 --- a/collects/scribblings/reference/filesystem.scrbl +++ b/collects/scribblings/reference/filesystem.scrbl @@ -680,10 +680,10 @@ following links, use the more general @scheme[fold-files] procedure. If @scheme[start-path] does not refer to an existing file or directory, then @scheme[predicate] will be called exactly once with -@scheme[start-path] as the argument.} +@scheme[start-path] as the argument. -The @scheme[find-files] procedure signals an error if it encounters a directory -on which @scheme[directory-list] fails. +The @scheme[find-files] procedure raises and exception if it encounters +a directory for which @scheme[directory-list] fails.} @defproc[(pathlist-closure [path-list (listof path-string?)]) (listof path?)]{ @@ -761,8 +761,8 @@ the procedure may return two values, the second indicating whether the recursive scan should include the given directory or not. If it returns a single value, the directory is scanned. -An error is signaled if the @scheme[start-path] is provided but no -such path exists, or if paths disappear during the scan.} +If the @scheme[start-path] is provided but no such path exists, or if +paths disappear during the scan, then an exception is raised.} @defproc[(make-directory* [path path-string?]) void?]{ diff --git a/collects/scribblings/reference/windows-paths.scrbl b/collects/scribblings/reference/windows-paths.scrbl index 34000f33f2..edea1b5912 100644 --- a/collects/scribblings/reference/windows-paths.scrbl +++ b/collects/scribblings/reference/windows-paths.scrbl @@ -42,7 +42,7 @@ parameter). Consequently, Scheme implicitly converts a path like Otherwise, Scheme follows standard Windows path conventions, but also adds @litchar{\\?\REL} and @litchar{\\?\RED} conventions to - deal with paths inexpressible in the standard conventsion, plus + deal with paths inexpressible in the standard convention, plus conventions to deal with excessive @litchar{\}s in @litchar{\\?\} paths.