Skip to content

Commit

Permalink
Address review comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
rtar committed Feb 28, 2025
1 parent 9c83673 commit 6812bb1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/scala-2/com/evolutiongaming/random/Random.scala
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,9 @@ object Random {
*
* @param seed
* The internal state of the random number generator that will be used to
* generate the next random number.
* generate the next random number. The initial `seed` is quite important
* as having `0` as seed reduces this LCG PRNG to lesser Lehmer RNG.
* Consider using [[State#fromClock]] for a good initial seed.
* @param random
* The stateless part of the random number generator, i.e. the set of
* functions from `state1` to `(state2, A)`, where `A` is the type of
Expand Down

0 comments on commit 6812bb1

Please sign in to comment.