]> Cypherpunks repositories - gostls13.git/commitdiff
crypto/md5: fix comment typo.
authorAdam Langley <agl@golang.org>
Sun, 15 Nov 2009 22:00:46 +0000 (14:00 -0800)
committerAdam Langley <agl@golang.org>
Sun, 15 Nov 2009 22:00:46 +0000 (14:00 -0800)
Fixes #210.

R=rsc
CC=golang-dev
https://golang.org/cl/155057

src/pkg/crypto/md5/md5.go

index 209cd5973a75e08b0de5dda699f9c44fb49a59a5..e0699aeec01320cb79b1f9ce234171347d0a76c9 100644 (file)
@@ -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();