summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-27 01:24:08 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-27 01:24:08 +0000
commit7c4084f9fb85073ec08450abdf70b24f7b598033 (patch)
treea5641b06f865d70dba563b6e7cc3a7cb0e759196 /thread.c
parent530b1308c6d8199ebd7d080ec17b21eabed84342 (diff)
* thread.c (thread_raise_m): rdoc formatting
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39516 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c6
1 files changed, 3 insertions, 3 deletions
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 <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'