diff --git a/core/math/integers/integers-docs.factor b/core/math/integers/integers-docs.factor index c09f2950e4..e25bbf13e2 100644 --- a/core/math/integers/integers-docs.factor +++ b/core/math/integers/integers-docs.factor @@ -4,7 +4,7 @@ IN: math.integers ARTICLE: "integers" "Integers" { $subsections integer } "Integers come in two varieties -- fixnums and bignums. Fixnums fit in a machine word and are faster to manipulate; if the result of a fixnum operation is too large to fit in a fixnum, the result is upgraded to a bignum. Here is an example where two fixnums are multiplied yielding a bignum:" -{ $example "USE: classes" "134217728 class ." "fixnum" } +{ $example "USE: classes" "67108864 class ." "fixnum" } { $example "USE: classes" "128 class ." "fixnum" } { $example "134217728 128 * ." "17179869184" } { $example "USE: classes" "1 128 shift class ." "bignum" }