summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/thread.c b/thread.c
index d5da3e3856..7674eff572 100644
--- a/thread.c
+++ b/thread.c
@@ -884,10 +884,10 @@ thread_create_core(VALUE thval, struct thread_create_params *params)
#define threadptr_initialized(th) ((th)->invoke_type != thread_invoke_type_none)
/*
- * call-seq:
- * Thread.new { ... } -> thread
- * Thread.new(*args, &proc) -> thread
- * Thread.new(*args) { |args| ... } -> thread
+ * call-seq:
+ * Thread.new { ... } -> thread
+ * Thread.new(*args, &proc) -> thread
+ * Thread.new(*args) { |args| ... } -> thread
*
* Creates a new thread executing the given block.
*