From c24e60eebb822c39523a894e7a46a70eccc270d4 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Thu, 1 Aug 2013 11:34:25 -0400 Subject: [PATCH] strconv: fix doc comment for IntSize R=golang-dev, r CC=golang-dev https://golang.org/cl/12258043 --- src/pkg/strconv/atoi.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 { -- 2.48.1