From: griesemer Date: Thu, 31 Aug 2017 13:02:24 +0000 (+0200) Subject: math/big: fix internal comment X-Git-Tag: go1.10beta1~1249 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f7cb5bca1a93dfe5b4356e0c4a4c4207d2d2b194;p=gostls13.git math/big: fix internal comment Change-Id: Id003e2dbecad7b3c249a747f8b4032135dfbe34f Reviewed-on: https://go-review.googlesource.com/60670 Reviewed-by: Marcel van Lohuizen --- diff --git a/src/math/big/decimal.go b/src/math/big/decimal.go index 2dfa032c77..ae9ffb5db6 100644 --- a/src/math/big/decimal.go +++ b/src/math/big/decimal.go @@ -20,7 +20,7 @@ package big // A decimal represents an unsigned floating-point number in decimal representation. -// The value of a non-zero decimal d is d.mant * 10**d.exp with 0.5 <= d.mant < 1, +// The value of a non-zero decimal d is d.mant * 10**d.exp with 0.1 <= d.mant < 1, // with the most-significant mantissa digit at index 0. For the zero decimal, the // mantissa length and exponent are 0. // The zero value for decimal represents a ready-to-use 0.0.