2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-17 16:22:23 +00:00

hashing: Fix up comments

This commit is contained in:
greatroar 2022-05-11 21:36:10 +02:00
parent 54b8337813
commit 39a335e690

View File

@ -5,14 +5,13 @@ import (
"io"
)
// Reader hashes all data read from the underlying reader.
// A Reader hashes all data read from the underlying reader.
type Reader struct {
r io.Reader
h hash.Hash
}
// NewReader returns a new Reader that uses the hash h. If the underlying
// reader supports WriteTo then the returned reader will do so too.
// NewReader returns a new Reader that uses the hash h.
func NewReader(r io.Reader, h hash.Hash) *Reader {
return &Reader{r: r, h: h}
}