mirror of
https://github.com/golang/go
synced 2024-11-24 02:40:17 -07:00
math/rand: fix typo in Seed deprecation comment
Change-Id: I37a9e4362953a711840087e1b7b8d7a25f1a83b7 Reviewed-on: https://go-review.googlesource.com/c/go/+/467275 Reviewed-by: Russ Cox <rsc@golang.org> TryBot-Bypass: Russ Cox <rsc@golang.org> Auto-Submit: Russ Cox <rsc@golang.org>
This commit is contained in:
parent
b02d5d325a
commit
2b807e1d7b
@ -391,7 +391,7 @@ func (fs *fastSource) read(p []byte, readVal *int64, readPos *int8) (n int, err
|
|||||||
// of results from the global random source (using functions such as Int)
|
// of results from the global random source (using functions such as Int)
|
||||||
// can be broken when a dependency changes how much it consumes
|
// can be broken when a dependency changes how much it consumes
|
||||||
// from the global random source. To avoid such breakages, programs
|
// from the global random source. To avoid such breakages, programs
|
||||||
// that need a specific result sequence should use NewRand(NewSource(seed))
|
// that need a specific result sequence should use New(NewSource(seed))
|
||||||
// to obtain a random generator that other packages cannot access.
|
// to obtain a random generator that other packages cannot access.
|
||||||
func Seed(seed int64) {
|
func Seed(seed int64) {
|
||||||
orig := globalRandGenerator.Load()
|
orig := globalRandGenerator.Load()
|
||||||
|
Loading…
Reference in New Issue
Block a user