From: Robin Eklind Date: Thu, 27 Jun 2013 10:51:46 +0000 (+1000) Subject: crypto/sha512: update comment for the Sum512 function. X-Git-Tag: go1.2rc2~1160 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2546a54148ba91b48c4a5ea4b288976b40eda58f;p=gostls13.git crypto/sha512: update comment for the Sum512 function. R=golang-dev, r CC=golang-dev https://golang.org/cl/10660043 --- 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()