Merge pull request #26 from cespare/patch-1

Fix a markdown formatting comment typo
This commit is contained in:
Mark McGranaghan 2012-10-31 13:43:50 -07:00
commit 20a56fe6b2

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