1
0
mirror of https://github.com/golang/go synced 2024-11-12 06:20:22 -07:00

comment typos

Fixes #698.
Fixes #699.

R=rsc
CC=golang-dev
https://golang.org/cl/824041
This commit is contained in:
Andrew Gerrand 2010-03-29 16:31:41 +11:00
parent a618df0f5b
commit 9ba5ec53ad

View File

@ -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