diff --git a/ChangeLog b/ChangeLog index 3a1ac638dc..7ae04cb693 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed Feb 27 10:23:00 2013 Zachary Scott + + * thread.c (thread_raise_m): rdoc formatting + Tue Feb 26 23:32:44 2013 Kouhei Sutou * lib/rexml/document.rb: move entity_expansion_limit accessor to ... diff --git a/thread.c b/thread.c index 0c4b7df7f7..6605043e05 100644 --- a/thread.c +++ b/thread.c @@ -2057,14 +2057,14 @@ rb_thread_fd_close(int fd) * thr.raise(string) * thr.raise(exception [, string [, array]]) * - * Raises an exception (see Kernel::raise) from thr. The - * caller does not have to be thr. + * Raises an exception from the given thread. The caller does not have to be + * +thr+. See Kernel#raise for more information. * * Thread.abort_on_exception = true * a = Thread.new { sleep(200) } * a.raise("Gotcha") * - * produces: + * _produces:_ * * prog.rb:3: Gotcha (RuntimeError) * from prog.rb:2:in `initialize'