From 039107441091af0b17b895a408e4db2b2749e8df Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Thu, 26 Mar 2009 12:00:13 +0000 Subject: [PATCH] typo svn: r14288 original commit: 34c14d27f55e08c3d47882b7f7334dd2fada1343 --- collects/scribblings/gui/text-class.scrbl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/collects/scribblings/gui/text-class.scrbl b/collects/scribblings/gui/text-class.scrbl index 4f5b7890..038d2b90 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?]{