[前][次][番号順一覧][スレッド一覧]

ruby-changes:27464

From: zzak <ko1@a...>
Date: Wed, 27 Feb 2013 10:25:13 +0900 (JST)
Subject: [ruby-changes:27464] zzak:r39516 (trunk): * thread.c (thread_raise_m): rdoc formatting

zzak	2013-02-27 10:24:08 +0900 (Wed, 27 Feb 2013)

  New Revision: 39516

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=39516

  Log:
    * thread.c (thread_raise_m): rdoc formatting

  Modified files:
    trunk/ChangeLog
    trunk/thread.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 39515)
+++ ChangeLog	(revision 39516)
@@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Wed Feb 27 10:23:00 2013  Zachary Scott  <zachary@z...>
+
+	* thread.c (thread_raise_m): rdoc formatting
+
 Tue Feb 26 23:32:44 2013  Kouhei Sutou  <kou@c...>
 
 	* lib/rexml/document.rb: move entity_expansion_limit accessor to ...
Index: thread.c
===================================================================
--- thread.c	(revision 39515)
+++ thread.c	(revision 39516)
@@ -2057,14 +2057,14 @@ rb_thread_fd_close(int fd) https://github.com/ruby/ruby/blob/trunk/thread.c#L2057
  *     thr.raise(string)
  *     thr.raise(exception [, string [, array]])
  *
- *  Raises an exception (see <code>Kernel::raise</code>) from <i>thr</i>. The
- *  caller does not have to be <i>thr</i>.
+ *  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")
  *
- *  <em>produces:</em>
+ *  _produces:_
  *
  *     prog.rb:3: Gotcha (RuntimeError)
  *     	from prog.rb:2:in `initialize'

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]