From 0f37e9e7900d62914596e8e7b5d0cd0d57a9c970 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%' original commit: afeeb56fe8495e043d1b6485eadcde88b1a637b0 --- 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 82344208..e1e1fe94 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