diff options
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r-- | lib/stdlib/src/rand.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/rand.erl b/lib/stdlib/src/rand.erl index 3ff7aaf15f..ddd22914e2 100644 --- a/lib/stdlib/src/rand.erl +++ b/lib/stdlib/src/rand.erl @@ -58,7 +58,7 @@ %% Algorithm state -type state() :: {alg_handler(), alg_seed()}. -type builtin_alg() :: exs64 | exsplus | exs1024. --type alg() :: builtin_alg() | term(). +-type alg() :: builtin_alg() | atom(). -type export_state() :: {alg(), alg_seed()}. -export_type([builtin_alg/0, alg/0, alg_handler/0, alg_seed/0, state/0, export_state/0]). |