diff options
author | Kazuhiro NISHIYAMA <[email protected]> | 2023-10-16 18:29:59 +0900 |
---|---|---|
committer | Kazuhiro NISHIYAMA <[email protected]> | 2023-10-16 18:29:59 +0900 |
commit | fe08839d8ac3b830c3b88626043da30f57de73c9 (patch) | |
tree | e118df27ac0ceaaf93dc6fa7d07b1adfaf632daa /thread_pthread.c | |
parent | d4ac62f3e938f09136ea59324dd23d011088d75f (diff) |
Fix typos [ci skip]
Diffstat (limited to 'thread_pthread.c')
-rw-r--r-- | thread_pthread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/thread_pthread.c b/thread_pthread.c index cae4a8e1bd..10b956373d 100644 --- a/thread_pthread.c +++ b/thread_pthread.c @@ -1643,7 +1643,7 @@ ruby_mn_threads_params(void) #else enable_mn_threads = false; if (RTEST(ruby_verbose)) { - fprintf(stderr, "RUBY_MN_THREADS = %s is specified, but MN threads are not implmeented on this executable.", mn_threads_cstr); + fprintf(stderr, "RUBY_MN_THREADS = %s is specified, but MN threads are not implemented on this executable.", mn_threads_cstr); } #endif } @@ -1660,7 +1660,7 @@ ruby_mn_threads_params(void) #if USE_MN_THREADS fprintf(stderr, "RUBY_MAX_CPU = %d (default: %d)\n", max_cpu, default_max_cpu); #else - fprintf(stderr, "RUBY_MAX_CPU = %d is specified, but MN threads are not implmeented on this executable.", max_cpu); + fprintf(stderr, "RUBY_MAX_CPU = %d is specified, but MN threads are not implemented on this executable.", max_cpu); #endif } } |