Skip to content

Commit

Permalink
Merge branch 'maint'
Browse files Browse the repository at this point in the history
* maint:
  Update rand.erl Documentation bug: exs928ss does not work, perhaps exro928ss is correct?
  • Loading branch information
RaimoNiskanen committed Aug 30, 2024
2 parents 6a5bf81 + 38b5f87 commit 248af5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/stdlib/src/rand.erl
Original file line number Diff line number Diff line change
Expand Up @@ -201,14 +201,14 @@ R1 = rand:uniform(),
Use a specified algorithm:
```erlang
_ = rand:seed(exs928ss),
_ = rand:seed(exro928ss),
R2 = rand:uniform(),
```
Use a specified algorithm with a fixed seed:
```erlang
_ = rand:seed(exs928ss, {123, 123534, 345345}),
_ = rand:seed(exro928ss, {123, 123534, 345345}),
R3 = rand:uniform(),
```
Expand Down

0 comments on commit 248af5a

Please sign in to comment.