From: Adam Langley Date: Sun, 15 Nov 2009 22:00:46 +0000 (-0800) Subject: crypto/md5: fix comment typo. X-Git-Tag: weekly.2009-11-17~43 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=391e082ca9176f05be96a8853cc2bf9d93771756;p=gostls13.git crypto/md5: fix comment typo. Fixes #210. R=rsc CC=golang-dev https://golang.org/cl/155057 --- diff --git a/src/pkg/crypto/md5/md5.go b/src/pkg/crypto/md5/md5.go index 209cd5973a..e0699aeec0 100644 --- a/src/pkg/crypto/md5/md5.go +++ b/src/pkg/crypto/md5/md5.go @@ -38,7 +38,7 @@ func (d *digest) Reset() { d.len = 0; } -// New returns a hash.Hash computing the SHA1 checksum. +// New returns a new hash.Hash computing the MD5 checksum. func New() hash.Hash { d := new(digest); d.Reset();