From 38a2b28f85b7106979289037f5853973b30c1863 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Fri, 3 Jul 2020 07:16:01 -0600 Subject: [PATCH] reference: update fixnum range for CS --- pkgs/racket-doc/scribblings/reference/numbers.scrbl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/racket-doc/scribblings/reference/numbers.scrbl b/pkgs/racket-doc/scribblings/reference/numbers.scrbl index e32b81f551..4fb6932629 100644 --- a/pkgs/racket-doc/scribblings/reference/numbers.scrbl +++ b/pkgs/racket-doc/scribblings/reference/numbers.scrbl @@ -87,8 +87,9 @@ numbers). In particular, adding, multiplying, subtracting, and dividing exact numbers always produces an exact result. A @deftech{fixnum} is an exact integer whose two's complement -representation fit into 31 bits on a 32-bit platform or 63 bits on a -64-bit platform; furthermore, no allocation is required when computing +representation fits into 30 or 31 bits (depending on the Racket variant) +on a 32-bit platform or 61 or 63 bits (depending on the Racket variant) on a +64-bit platform. No allocation is required when computing with fixnums. See also the @racketmodname[racket/fixnum] module, below. Two fixnums that are @racket[=] are also the same