From 4813d8713cd88fa8aa8d403d5d0eb84d1ad73ac9 Mon Sep 17 00:00:00 2001 From: zzak Date: Mon, 13 May 2013 01:07:50 +0000 Subject: [PATCH] * random.c: Document Random::DEFAULT by @eLobato [Fixes GH-304] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40677 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ random.c | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index b892cf6664..f7b1f100ad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon May 13 10:04:22 2013 Zachary Scott + + * random.c: Document Random::DEFAULT by @eLobato [Fixes GH-304] + Sun May 12 21:12:42 2013 Nobuyoshi Nakada * include/ruby/ruby.h (OFFT2NUM): RUBY_REPLACE_TYPE also defines macro diff --git a/random.c b/random.c index da83c2c867..8f8a7f33a8 100644 --- a/random.c +++ b/random.c @@ -1494,6 +1494,7 @@ Init_Random(void) { VALUE rand_default = TypedData_Wrap_Struct(rb_cRandom, &random_data_type, &default_rand); rb_gc_register_mark_object(rand_default); + /* Direct access to Ruby's Pseudorandom number generator (PRNG). */ rb_define_const(rb_cRandom, "DEFAULT", rand_default); }