summaryrefslogtreecommitdiff
path: root/process.c
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-30 08:55:41 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-30 08:55:41 +0000
commit89a452c7c1883607f16ae20e940ec537b69a67df (patch)
tree2f4c07a3d0758676a3e737206f5b46b5e77ca74d /process.c
parent38a14c68e003d30e7a3d12fe0bcce9639d14e39c (diff)
* process.c: RDoc on Process.spawn
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40991 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
-rw-r--r--process.c4
1 files changed, 3 insertions, 1 deletions
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 <code>Process.wait</code> to collect
* the termination status of its child or