summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--random.c8
2 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index afae3f0556..36e5583b59 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Feb 3 10:25:00 2013 Zachary Scott <zachary@zacharyscott.net>
+
+ * random.c: Document range argument for Kernel#rand.
+ [ruby-core:51794] [Bug #7770]
+
Sun Feb 3 10:00:00 2013 Zachary Scott <zachary@zacharyscott.net>
* numeric.c: Document Float constants [ruby-core:51484] [Bug #7709]
diff --git a/random.c b/random.c
index 50db6ec393..6e635d912f 100644
--- a/random.c
+++ b/random.c
@@ -1273,12 +1273,14 @@ random_equal(VALUE self, VALUE other)
*
* rand #=> 0.2725926052826416
*
- * When <tt>max.abs</tt> is greater than or equal to 1, +rand+ returns a
- * pseudo-random integer greater than or equal to 0 and less than
- * <tt>max.to_i.abs</tt>.
+ * When +max.abs+ is greater than or equal to 1, +rand+ returns a pseudo-random
+ * integer greater than or equal to 0 and less than +max.to_i.abs+.
*
* rand(100) #=> 12
*
+ * When +max+ is a Range, +rand+ returns a random number where
+ * range.member?(number) == true.
+ *
* Negative or floating point values for +max+ are allowed, but may give
* surprising results.
*