From: Russ Cox Date: Fri, 18 Jan 2013 22:30:34 +0000 (-0500) Subject: math/big: fix typo X-Git-Tag: go1.1rc2~1345 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=92b2643c92f88f802e7556a733aa7b7c727efdbe;p=gostls13.git math/big: fix typo Fixes #4678. TBR=gri CC=golang-dev https://golang.org/cl/7135059 --- diff --git a/src/pkg/math/big/int.go b/src/pkg/math/big/int.go index 63a4536e2a..bf2fd20092 100644 --- a/src/pkg/math/big/int.go +++ b/src/pkg/math/big/int.go @@ -526,7 +526,7 @@ func (x *Int) Int64() int64 { return v } -// Uint64 returns the int64 representation of x. +// Uint64 returns the uint64 representation of x. // If x cannot be represented in an uint64, the result is undefined. func (x *Int) Uint64() uint64 { if len(x.abs) == 0 {