From 92b2643c92f88f802e7556a733aa7b7c727efdbe Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Fri, 18 Jan 2013 17:30:34 -0500 Subject: [PATCH] math/big: fix typo Fixes #4678. TBR=gri CC=golang-dev https://golang.org/cl/7135059 --- src/pkg/math/big/int.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.48.1