From a2f3e0f16f7588fd8a42fa062d52093d4528d53b Mon Sep 17 00:00:00 2001 From: GregPlowman Date: Thu, 24 Jun 2021 12:52:01 +1000 Subject: [PATCH] change doc for seed! thread-local -> task-local (#41341) default rng is task-local not thread-local? --- stdlib/Random/src/Random.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/Random/src/Random.jl b/stdlib/Random/src/Random.jl index 53dbe38238bbc2..45aa6442eed7e9 100644 --- a/stdlib/Random/src/Random.jl +++ b/stdlib/Random/src/Random.jl @@ -392,7 +392,7 @@ After the call to `seed!`, `rng` is equivalent to a newly created object initialized with the same seed. If `rng` is not specified, it defaults to seeding the state of the -shared thread-local generator. +shared task-local generator. # Examples ```julia-repl