Update doc.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40987 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2013-05-30 03:57:46 +00:00
parent 4f66fb1442
commit 184bfbba7f

View File

@ -3800,7 +3800,10 @@ rb_f_system(int argc, VALUE *argv)
*
* spawn executes specified command and return its pid.
*
* This method doesn't wait for end of the command.
* 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.
* The parent process should
* use <code>Process.wait</code> to collect
* the termination status of its child or