diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-24 23:14:14 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-24 23:14:14 +0000 |
commit | 6a7685da36c2e30301680b78ed73b042a4ca12ca (patch) | |
tree | a103fb6fca4b58a0990217cd8e6efe386041ca98 /random.c | |
parent | c2f9106b1a0e068e96564ef03a85a6efd16c4400 (diff) |
* random.c (rb_f_rand): RDoc typo fix. a patch from Frederick
Cheung <fred at 82ask.com>. [ruby-talk:216047]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11014 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'random.c')
-rw-r--r-- | random.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -426,7 +426,7 @@ limited_big_rand(struct RBignum *limit) * than or equal to zero and less than max1. <code>Kernel::srand</code> * may be used to ensure repeatable sequences of random numbers between * different runs of the program. Ruby currently uses a modified - * Mersenne Twister with a period of 219937-1. + * Mersenne Twister with a period of 2**19937-1. * * srand 1234 #=> 0 * [ rand, rand ] #=> [0.191519450163469, 0.49766366626136] |