diff --git a/pkg/blobref/blobref.go b/pkg/blobref/blobref.go index 9540197c1..f41320253 100644 --- a/pkg/blobref/blobref.go +++ b/pkg/blobref/blobref.go @@ -49,6 +49,7 @@ type BlobRef struct { // AsUint64 returns the first 64-bits of the blobref as an integer. func (br *BlobRef) AsUint64() uint64 { + // TODO(bradfitz): rename this Sum64 like Sum32 below. var ret uint64 for i := 0; i < 16; i++ { b := br.digest[i]