From f7cb5bca1a93dfe5b4356e0c4a4c4207d2d2b194 Mon Sep 17 00:00:00 2001 From: griesemer Date: Thu, 31 Aug 2017 15:02:24 +0200 Subject: [PATCH] math/big: fix internal comment Change-Id: Id003e2dbecad7b3c249a747f8b4032135dfbe34f Reviewed-on: https://go-review.googlesource.com/60670 Reviewed-by: Marcel van Lohuizen --- src/math/big/decimal.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.50.0