From: Robert Griesemer Date: Tue, 3 Feb 2015 00:42:40 +0000 (-0800) Subject: strconv: fix internal documentation (clarification, typos) X-Git-Tag: go1.5beta1~2121 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9209d893c88054f35be9757eaad8449eb3a90105;p=gostls13.git strconv: fix internal documentation (clarification, typos) Change-Id: I7514e643a6a81ca715adbf6f8d19d3b2dd43fe6c Reviewed-on: https://go-review.googlesource.com/3810 Reviewed-by: Alan Donovan --- diff --git a/src/strconv/decimal.go b/src/strconv/decimal.go index 42601283d2..3d7c8d1da9 100644 --- a/src/strconv/decimal.go +++ b/src/strconv/decimal.go @@ -12,7 +12,7 @@ package strconv type decimal struct { - d [800]byte // digits + d [800]byte // digits, big-endian representation nd int // number of digits used dp int // decimal point neg bool @@ -105,7 +105,7 @@ func (a *decimal) Assign(v uint64) { // Signed int has 31 bits, and we have to be able to accommodate 9<