diff --git a/ChangeLog b/ChangeLog index f0975cb122..d13aaeb10a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed Feb 27 12:57:00 2013 Zachary Scott + + * thread.c (rb_thread_wakeup): rdoc formatting + Wed Feb 27 12:53:00 2013 Zachary Scott * thread.c (rb_thread_group): rdoc formatting diff --git a/thread.c b/thread.c index ff0df2be58..b674577676 100644 --- a/thread.c +++ b/thread.c @@ -2174,15 +2174,17 @@ rb_thread_exit(void) * call-seq: * thr.wakeup -> thr * - * Marks thr as eligible for scheduling (it may still remain blocked on - * I/O, however). Does not invoke the scheduler (see Thread#run). + * Marks a given thread as eligible for scheduling, however it may still + * remain blocked on I/O. + * + * *Note:* This does not invoke the scheduler, see #run for more information. * * c = Thread.new { Thread.stop; puts "hey!" } * sleep 0.1 while c.status!='sleep' * c.wakeup * c.join * - * produces: + * _produces:_ * * hey! */