From 89a452c7c1883607f16ae20e940ec537b69a67df Mon Sep 17 00:00:00 2001 From: zzak Date: Thu, 30 May 2013 08:55:41 +0000 Subject: [PATCH] * process.c: RDoc on Process.spawn git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40991 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ process.c | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 62343699d4..fce81865fa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu May 30 17:55:04 2013 Zachary Scott + + * process.c: RDoc on Process.spawn + Thu May 30 00:08:14 2013 Koichi Sasada * gc.c (gc_profile_enable): rest_sweep() to finish last GC. diff --git a/process.c b/process.c index 24b52e7821..d90da1af77 100644 --- a/process.c +++ b/process.c @@ -3803,7 +3803,9 @@ rb_f_system(int argc, VALUE *argv) * pid = spawn("tar xf ruby-2.0.0-p195.tar.bz2") * Process.wait pid * - * This method is similar to system but it doesn't wait end of the command. + * This method is similar to Kernel#system but it doesn't wait for the command + * to finish. + * * The parent process should * use Process.wait to collect * the termination status of its child or