From 391e082ca9176f05be96a8853cc2bf9d93771756 Mon Sep 17 00:00:00 2001 From: Adam Langley Date: Sun, 15 Nov 2009 14:00:46 -0800 Subject: [PATCH] crypto/md5: fix comment typo. Fixes #210. R=rsc CC=golang-dev https://golang.org/cl/155057 --- src/pkg/crypto/md5/md5.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/crypto/md5/md5.go b/src/pkg/crypto/md5/md5.go index 209cd5973a7..e0699aeec01 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();