diff --git a/src/math/rand/rand.go b/src/math/rand/rand.go index add039ed4bdad..05a56e0f04c14 100644 --- a/src/math/rand/rand.go +++ b/src/math/rand/rand.go @@ -179,8 +179,8 @@ var globalRand = New(&lockedSource{src: NewSource(1)}) // Seed uses the provided seed value to initialize the default Source to a // deterministic state. If Seed is not called, the generator behaves as -// if seeded by Seed(1). Only uses the bottom 31 bits of seed; the top 33 -// bits are ignored. +// if seeded by Seed(1). Seed values that have the same remainder when +// divided by 2^31-1 generate the same pseudo-random sequence. func Seed(seed int64) { globalRand.Seed(seed) } // Int63 returns a non-negative pseudo-random 63-bit integer as an int64