From 2546a54148ba91b48c4a5ea4b288976b40eda58f Mon Sep 17 00:00:00 2001 From: Robin Eklind Date: Thu, 27 Jun 2013 20:51:46 +1000 Subject: [PATCH] crypto/sha512: update comment for the Sum512 function. R=golang-dev, r CC=golang-dev https://golang.org/cl/10660043 --- src/pkg/crypto/sha512/sha512.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/crypto/sha512/sha512.go b/src/pkg/crypto/sha512/sha512.go index 6825c22acd..d2ada51373 100644 --- a/src/pkg/crypto/sha512/sha512.go +++ b/src/pkg/crypto/sha512/sha512.go @@ -184,7 +184,7 @@ func (d *digest) checkSum() [Size]byte { return digest } -// Sum returns the SHA512 checksum of the data. +// Sum512 returns the SHA512 checksum of the data. func Sum512(data []byte) [Size]byte { var d digest d.Reset() -- 2.50.0