diff --git a/pkgs/gui-pkgs/gui-doc/scribblings/gui/style-delta-class.scrbl b/pkgs/gui-pkgs/gui-doc/scribblings/gui/style-delta-class.scrbl index af9db742..c408aba7 100644 --- a/pkgs/gui-pkgs/gui-doc/scribblings/gui/style-delta-class.scrbl +++ b/pkgs/gui-pkgs/gui-doc/scribblings/gui/style-delta-class.scrbl @@ -323,7 +323,7 @@ Gets the multiplicative color shift for the foreground (applied before 'change-smoothing 'change-toggle-smoothing 'change-alignment)] - [param symbol]) + [param symbol?]) (is-a?/c style-delta%)] [(set-delta [change-command (or/c 'change-size 'change-bigger diff --git a/pkgs/gui-pkgs/gui-doc/scribblings/gui/text-class.scrbl b/pkgs/gui-pkgs/gui-doc/scribblings/gui/text-class.scrbl index 482d3a30..c7f1037f 100644 --- a/pkgs/gui-pkgs/gui-doc/scribblings/gui/text-class.scrbl +++ b/pkgs/gui-pkgs/gui-doc/scribblings/gui/text-class.scrbl @@ -1647,7 +1647,7 @@ If the previous operation on the editor was not a paste, calling @defmethod[#:mode override - (paste-x-selection [time exact-integer?] + (paste-x-selection [time exact-integer? 0] [start (or/c exact-nonnegative-integer? 'start 'end) 'start] [end (or/c exact-nonnegative-integer? 'same) 'same]) void?]{ @@ -1739,11 +1739,14 @@ Returns the paragraph number of the paragraph containing a given @techlink{posit } -@defmethod[#:mode extend - (read-from-file [stream (is-a?/c editor-stream-in%)] - [start (or/c exact-nonnegative-integer? 'start)] - [overwrite-styles? any/c #f]) - boolean?]{ +@defmethod*[#:mode extend + ([(read-from-file [stream (is-a?/c editor-stream-in%)] + [start (or/c exact-nonnegative-integer? 'start)] + [overwrite-styles? any/c #f]) + boolean?] + [(read-from-file [stream (is-a?/c editor-stream-in%)] + [overwrite-styles? any/c #f]) + boolean?])]{ New data is inserted at the @techlink{position} indicated by @racket[start], or at the current @techlink{position} if @racket[start] is @racket['start].