aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/hash/adler32/adler32.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/hash/adler32/adler32.go')
-rw-r--r--libgo/go/hash/adler32/adler32.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/libgo/go/hash/adler32/adler32.go b/libgo/go/hash/adler32/adler32.go
index 7c80796bf9f..0c733f751af 100644
--- a/libgo/go/hash/adler32/adler32.go
+++ b/libgo/go/hash/adler32/adler32.go
@@ -33,6 +33,7 @@ type digest uint32
func (d *digest) Reset() { *d = 1 }
// New returns a new hash.Hash32 computing the Adler-32 checksum.
+// Its Sum method will lay the value out in big-endian byte order.
func New() hash.Hash32 {
d := new(digest)
d.Reset()