Fix a markdown formatting comment typo

This commit is contained in:
Caleb Spare 2012-10-31 13:40:06 -07:00
parent be7f09c8e8
commit ff571b1ef0

View File

@ -16,7 +16,7 @@ func main() {
s := "sha1 this string"
// The pattern for generating a hash is `sha1.New()`,
// `sha1.Write(bytes)`, then `sha1.Sum([]byte{}).
// `sha1.Write(bytes)`, then `sha1.Sum([]byte{})`.
// Here we start with a new hash.
h := sha1.New()