Commit 7d1d9446 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

math/rand: update comment to avoid use of ^ for exponentiation

Fixes #35920

Change-Id: I1a4d26c5f7f3fbd4de13fc337de482667d83c47f
Reviewed-on: https://go-review.googlesource.com/c/go/+/209758Reviewed-by: default avatarAlberto Donizetti <alb.donizetti@gmail.com>
parent 98e7270a
...@@ -298,7 +298,7 @@ var _ *rngSource = globalRand.src.(*lockedSource).src ...@@ -298,7 +298,7 @@ var _ *rngSource = globalRand.src.(*lockedSource).src
// Seed uses the provided seed value to initialize the default Source to a // Seed uses the provided seed value to initialize the default Source to a
// deterministic state. If Seed is not called, the generator behaves as // deterministic state. If Seed is not called, the generator behaves as
// if seeded by Seed(1). Seed values that have the same remainder when // if seeded by Seed(1). Seed values that have the same remainder when
// divided by 2^31-1 generate the same pseudo-random sequence. // divided by 2³¹-1 generate the same pseudo-random sequence.
// Seed, unlike the Rand.Seed method, is safe for concurrent use. // Seed, unlike the Rand.Seed method, is safe for concurrent use.
func Seed(seed int64) { globalRand.Seed(seed) } func Seed(seed int64) { globalRand.Seed(seed) }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment