From 2427f946e7341be4c200d038402e4d34b41e040a Mon Sep 17 00:00:00 2001 From: Brett Bim Date: Tue, 4 Oct 2011 10:20:13 -0500 Subject: [PATCH] adding documentation for Random --- random.c | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/random.c b/random.c index ebb4a60..669fecc 100644 --- a/random.c +++ b/random.c @@ -1321,6 +1321,15 @@ rb_reset_random_seed(void) r->seed = INT2FIX(0); } +/* + * Document-class: Random + * + * The Random module contains module functions for + * producing pseudo-random numbers that meet certain requirements + * for randomness. + */ + + void Init_Random(void) { -- 1.7.3.4