From e2f916d925ace9199ec42dd8b257849c7575d4e4 Mon Sep 17 00:00:00 2001 From: yugui Date: Fri, 9 Jan 2009 02:17:46 +0000 Subject: merges r21329 from trunk into ruby_1_9_1. * random.c (rb_f_srand): update RDoc. [ruby-core:21113] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@21395 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ random.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b48e26e12..e9f5bd30b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Jan 5 07:58:37 2009 Yukihiro Matsumoto + + * random.c (rb_f_srand): update RDoc. [ruby-core:21113] + Thu Jan 8 07:30:52 2009 Tanaka Akira * lib/open-uri.rb (OpenURI.redirectable?): reverted https redirection. diff --git a/random.c b/random.c index b0d2d03a0..6fded25ce 100644 --- a/random.c +++ b/random.c @@ -342,7 +342,7 @@ random_seed(void) * srand(number=0) => old_seed * * Seeds the pseudorandom number generator to the value of - * number.to_i.abs. If number is omitted + * number. If number is omitted * or zero, seeds the generator using a combination of the time, the * process id, and a sequence number. (This is also the behavior if * Kernel::rand is called without previously calling -- cgit