Skip to content

Commit

Permalink
math/big: fix internal comment
Browse files Browse the repository at this point in the history
Change-Id: Id003e2dbecad7b3c249a747f8b4032135dfbe34f
Reviewed-on: https://go-review.googlesource.com/60670
Reviewed-by: Marcel van Lohuizen <mpvl@golang.org>
  • Loading branch information
griesemer committed Aug 31, 2017
1 parent 295b026 commit f7cb5bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/math/big/decimal.go
Expand Up @@ -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.
Expand Down

0 comments on commit f7cb5bc

Please sign in to comment.