From 1a3c8692e6a0ca181a737f0aa4fc126b4c846529 Mon Sep 17 00:00:00 2001
From: sogaiu <983021772@users.noreply.github.com>
Date: Tue, 10 Aug 2021 20:09:24 +0900
Subject: [PATCH 1/2] Tweak docstring for math/rng-uniform

---
 src/core/math.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/core/math.c b/src/core/math.c
index b945a4d8..5b1d19f4 100644
--- a/src/core/math.c
+++ b/src/core/math.c
@@ -141,8 +141,7 @@ JANET_CORE_FN(cfun_rng_make,
 
 JANET_CORE_FN(cfun_rng_uniform,
               "(math/rng-uniform rng)",
-              "Extract a random random integer in the range [0, max] from the RNG. If "
-              "no max is given, the default is 2^31 - 1."
+              "Extract a random integer in the range [0, 1) from the RNG."
              ) {
     janet_fixarity(argc, 1);
     JanetRNG *rng = janet_getabstract(argv, 0, &janet_rng_type);

From c80a3c14015b0bfabad52ca33b994624b8d74f9c Mon Sep 17 00:00:00 2001
From: sogaiu <983021772@users.noreply.github.com>
Date: Sun, 15 Aug 2021 06:55:09 +0900
Subject: [PATCH 2/2] Fix error

---
 src/core/math.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/core/math.c b/src/core/math.c
index 5b1d19f4..c7424253 100644
--- a/src/core/math.c
+++ b/src/core/math.c
@@ -141,7 +141,7 @@ JANET_CORE_FN(cfun_rng_make,
 
 JANET_CORE_FN(cfun_rng_uniform,
               "(math/rng-uniform rng)",
-              "Extract a random integer in the range [0, 1) from the RNG."
+              "Extract a random number in the range [0, 1) from the RNG."
              ) {
     janet_fixarity(argc, 1);
     JanetRNG *rng = janet_getabstract(argv, 0, &janet_rng_type);