From d76f9325f0cd210e2e985cdb5a9fb2168755544c Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Wed, 10 Oct 2012 09:31:29 -0700 Subject: [PATCH] link sha1 --- examples/sha1-hashes/sha1-hashes.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/examples/sha1-hashes/sha1-hashes.go b/examples/sha1-hashes/sha1-hashes.go index aae181e..cda5591 100644 --- a/examples/sha1-hashes/sha1-hashes.go +++ b/examples/sha1-hashes/sha1-hashes.go @@ -1,8 +1,9 @@ -// SHA1 hashes are frequently used to compute short -// identities for binary or text blobs. For example, the -// [git revision control system](http://git-scm.com/) uses -// SHA1s extensively to identify versioned files and -// directories. Here's how to compute SHA1 hashes in Go. +// [SHA1 hashes](http://en.wikipedia.org/wiki/SHA-1) are +// frequently used to compute short identities for binary +// or text blobs. For example, the [git revision control +// system](http://git-scm.com/) uses SHA1s extensively to +// identify versioned files and directories. Here's how to +// compute SHA1 hashes in Go. package main