Skip to content

Commit

Permalink
Fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
dchest committed Jun 4, 2017
1 parent 9e95214 commit 7404d0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion siprng.go
Expand Up @@ -189,7 +189,7 @@ func siphash(k0, k1, m uint64) uint64 {
return v0 ^ v1 ^ v2 ^ v3
}

// SetSeed sets a new secret seed for PRNG.
// Seed sets a new secret seed for PRNG.
func (p *siprng) Seed(k [16]byte) {
p.k0 = binary.LittleEndian.Uint64(k[0:8])
p.k1 = binary.LittleEndian.Uint64(k[8:16])
Expand Down

0 comments on commit 7404d0e

Please sign in to comment.