summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorS-H-GAMELINKS <gamelinks007@gmail.com>2025-07-12 22:23:26 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2025-11-27 16:30:16 +0900
commit3ebb5b9c7811c3f551f61111c8495f859ad1861c (patch)
tree736c1f0f9620a56f47b35a5a673589ca9adc1c1f /thread.c
parent4917f2335d60f5ff48843542939e3227d8c9d9b8 (diff)
Remove unneeded trailing semicolons
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 3e9bf3192d..f545a5377d 100644
--- a/thread.c
+++ b/thread.c
@@ -1013,7 +1013,7 @@ rb_thread_create_ractor(rb_ractor_t *r, VALUE args, VALUE proc)
.args = args,
.proc = proc,
};
- return thread_create_core(rb_thread_alloc(rb_cThread), &params);;
+ return thread_create_core(rb_thread_alloc(rb_cThread), &params);
}