diff --git a/murmur3/murmur.go b/murmur3/murmur.go index 8dd9ec0..77f9196 100644 --- a/murmur3/murmur.go +++ b/murmur3/murmur.go @@ -24,7 +24,7 @@ type bmixer interface { type digest struct { clen int // Digested input cumulative length. - tail []byte // 0 to Size()-1 bytes view of `buf'. + tail []byte // 0 to Size()-1 bytes view of `buf`. buf [16]byte // Expected (but not required) to be Size() large. bmixer }