aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/math/rand/rand.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/math/rand/rand.go b/src/math/rand/rand.go
index 612b34d53e..a6f467622e 100644
--- a/src/math/rand/rand.go
+++ b/src/math/rand/rand.go
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// Package rand implements pseudo-random number generators unsuitable for
-// security-sensitive work.
+// Package rand implements pseudo-random number generators suitable for tasks
+// such as simulation, but it should not be used for security-sensitive work.
//
// Random numbers are generated by a [Source], usually wrapped in a [Rand].
// Both types should be used by a single goroutine at a time: sharing among