From: Russ Cox Date: Thu, 1 Aug 2013 15:34:25 +0000 (-0400) Subject: strconv: fix doc comment for IntSize X-Git-Tag: go1.2rc2~834 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c24e60eebb822c39523a894e7a46a70eccc270d4;p=gostls13.git strconv: fix doc comment for IntSize R=golang-dev, r CC=golang-dev https://golang.org/cl/12258043 --- diff --git a/src/pkg/strconv/atoi.go b/src/pkg/strconv/atoi.go index b06979b0c0..2d0db7155f 100644 --- a/src/pkg/strconv/atoi.go +++ b/src/pkg/strconv/atoi.go @@ -33,7 +33,8 @@ func rangeError(fn, str string) *NumError { const intSize = 32 << uint(^uint(0)>>63) -const IntSize = intSize // number of bits in int, uint (32 or 64) +// IntSize is the size in bits of an int or uint value. +const IntSize = intSize // Return the first number n such that n*base >= 1<<64. func cutoff64(base int) uint64 {