summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-06-28 23:01:53 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-06-29 11:41:10 +0900
commit9eae8cdefba61e9e51feb30a4b98525593169666 (patch)
treeb54d8502f7e7733e48c798e517f7676bf0395a51 /thread.c
parent983c9ad3f197ab8612c08ea894765b43ed089749 (diff)
Prefer qualified names under Thread
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index 2d3a3e15c2..f7372d3dd2 100644
--- a/thread.c
+++ b/thread.c
@@ -3153,7 +3153,7 @@ rb_thread_s_ignore_deadlock(VALUE _)
* deadlock condition via some other means, such as a signal.
*
* Thread.ignore_deadlock = true
- * queue = Queue.new
+ * queue = Thread::Queue.new
*
* trap(:SIGUSR1){queue.push "Received signal"}
*