From 3152c3210b2f06131a9d677e721d7249ac3ee526 Mon Sep 17 00:00:00 2001 From: Gregory Petrosyan Date: Thu, 27 Oct 2022 23:06:15 +0300 Subject: [PATCH] Note Rand determinism --- rand.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rand.go b/rand.go index 7c4a1c8..3a6cca9 100644 --- a/rand.go +++ b/rand.go @@ -13,7 +13,7 @@ // are safe for concurrent use by multiple goroutines, and their performance does // not degrade when the parallelism increases. [Rand] methods and functions with // [Rand] parameter are not safe for concurrent use, but should generally be preferred -// because of higher speed and quality. +// because of determinism, higher speed and quality. // // This package is considerably faster and generates higher quality random // than the [math/rand] package. However, this package's outputs might be