]> Cypherpunks repositories - gostls13.git/commitdiff
math/big: fix internal comment
authorgriesemer <gri@golang.org>
Thu, 31 Aug 2017 13:02:24 +0000 (15:02 +0200)
committerRobert Griesemer <gri@golang.org>
Thu, 31 Aug 2017 13:05:11 +0000 (13:05 +0000)
Change-Id: Id003e2dbecad7b3c249a747f8b4032135dfbe34f
Reviewed-on: https://go-review.googlesource.com/60670
Reviewed-by: Marcel van Lohuizen <mpvl@golang.org>
src/math/big/decimal.go

index 2dfa032c776c70ce0215fc8e95ba0b928331852e..ae9ffb5db6ab10526ccd1e855d2e63d35a825ca5 100644 (file)
@@ -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.