From: Andrew Gerrand Date: Mon, 29 Mar 2010 05:31:41 +0000 (+1100) Subject: comment typos X-Git-Tag: weekly.2010-03-30~30 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9ba5ec53ad6958842ffa19d82963a0dcede5ac63;p=gostls13.git comment typos Fixes #698. Fixes #699. R=rsc CC=golang-dev https://golang.org/cl/824041 --- diff --git a/src/pkg/big/int.go b/src/pkg/big/int.go index b48954ef8b..8f776b5f3b 100644 --- a/src/pkg/big/int.go +++ b/src/pkg/big/int.go @@ -205,7 +205,7 @@ Error: // SetBytes interprets b as the bytes of a big-endian, unsigned integer and -// sets x to that value. +// sets z to that value. func (z *Int) SetBytes(b []byte) *Int { s := int(_S) z.abs = makeN(z.abs, (len(b)+s-1)/s, false) @@ -264,8 +264,8 @@ func (z *Int) Bytes() []byte { } -// Len returns the length of the absolute value of x in bits. Zero is -// considered to have a length of one. +// Len returns the length of the absolute value of z in bits. Zero is +// considered to have a length of zero. func (z *Int) Len() int { if len(z.abs) == 0 { return 0