mirror of
https://github.com/janet-lang/janet
synced 2025-01-24 22:26:52 +00:00
Merge pull request #1075 from sogaiu/math-rng-int-docs
Tweak math/rng-int docs
This commit is contained in:
commit
75229332c8
@ -150,8 +150,8 @@ JANET_CORE_FN(cfun_rng_uniform,
|
|||||||
|
|
||||||
JANET_CORE_FN(cfun_rng_int,
|
JANET_CORE_FN(cfun_rng_int,
|
||||||
"(math/rng-int rng &opt max)",
|
"(math/rng-int rng &opt max)",
|
||||||
"Extract a random random integer in the range [0, max] from the RNG. If "
|
"Extract a random integer in the range [0, max) for max > 0 from the RNG. "
|
||||||
"no max is given, the default is 2^31 - 1."
|
"If max is 0, return 0. If no max is given, the default is 2^31 - 1."
|
||||||
) {
|
) {
|
||||||
janet_arity(argc, 1, 2);
|
janet_arity(argc, 1, 2);
|
||||||
JanetRNG *rng = janet_getabstract(argv, 0, &janet_rng_type);
|
JanetRNG *rng = janet_getabstract(argv, 0, &janet_rng_type);
|
||||||
|
Loading…
Reference in New Issue
Block a user