From afeeb56fe8495e043d1b6485eadcde88b1a637b0 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Wed, 26 Sep 2012 07:56:25 -0600 Subject: [PATCH] fix doc bug for `gauge%' --- collects/scribblings/gui/gauge-class.scrbl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/collects/scribblings/gui/gauge-class.scrbl b/collects/scribblings/gui/gauge-class.scrbl index 823442087c..e1e1fe942d 100644 --- a/collects/scribblings/gui/gauge-class.scrbl +++ b/collects/scribblings/gui/gauge-class.scrbl @@ -49,26 +49,26 @@ The @racket[style] list must include either @racket['horizontal], } @defmethod[(get-range) - (integer-in 1 10000)]{ + (integer-in 1 1000000)]{ Returns the range (maximum value) of the gauge. } @defmethod[(get-value) - (integer-in 0 10000)]{ + (integer-in 0 1000000)]{ Returns the gauge's current value. } -@defmethod[(set-range [range (integer-in 1 10000)]) +@defmethod[(set-range [range (integer-in 1 1000000)]) void?]{ Sets the range (maximum value) of the gauge. } -@defmethod[(set-value [pos (integer-in 0 10000)]) +@defmethod[(set-value [pos (integer-in 0 1000000)]) void?]{ Sets the gauge's current value. If the specified value is larger than