summaryrefslogtreecommitdiffstats
path: root/process.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-04-01 04:20:05 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-04-01 04:20:05 +0000
commit99cfb9be6ed2d244af806bc92fed8c8890a3616a (patch)
treee6ed52b0be202945dd94207d95621d3f7e60b9bf /process.c
parentc809fb6e81ac8cace22aafc9826110ad473ca280 (diff)
downloadruby-99cfb9be6ed2d244af806bc92fed8c8890a3616a.tar.gz
ruby-99cfb9be6ed2d244af806bc92fed8c8890a3616a.tar.xz
ruby-99cfb9be6ed2d244af806bc92fed8c8890a3616a.zip
* process.c (rb_f_sleep): RDoc disambiguation. [ruby-talk:332632]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23108 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
-rw-r--r--process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/process.c b/process.c
index 4b39d897f..f86ee199a 100644
--- a/process.c
+++ b/process.c
@@ -3220,8 +3220,8 @@ rb_f_spawn(int argc, VALUE *argv)
* Suspends the current thread for _duration_ seconds (which may be any number,
* including a +Float+ with fractional seconds). Returns the actual number of
* seconds slept (rounded), which may be less than that asked for if another
- * thread calls <code>Thread#run</code>. Zero arguments causes +sleep+ to sleep
- * forever.
+ * thread calls <code>Thread#run</code>. Called without an argument, sleep()
+ * will sleep forever.
*
* Time.new #=> 2008-03-08 19:56:19 +0900
* sleep 1.2 #=> 1