1
0
mirror of https://github.com/golang/go synced 2024-11-21 20:44:39 -07:00

crypto/md5: fix comment typo.

Fixes #210.

R=rsc
CC=golang-dev
https://golang.org/cl/155057
This commit is contained in:
Adam Langley 2009-11-15 14:00:46 -08:00
parent dc3b4932d8
commit 391e082ca9

View 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();