From 9209d893c88054f35be9757eaad8449eb3a90105 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Mon, 2 Feb 2015 16:42:40 -0800 Subject: [PATCH] strconv: fix internal documentation (clarification, typos) Change-Id: I7514e643a6a81ca715adbf6f8d19d3b2dd43fe6c Reviewed-on: https://go-review.googlesource.com/3810 Reviewed-by: Alan Donovan --- src/strconv/decimal.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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<