Fix typos [ci skip]

This commit is contained in:
Kazuhiro NISHIYAMA 2023-10-16 18:29:59 +09:00
parent d4ac62f3e9
commit fe08839d8a
No known key found for this signature in database
GPG Key ID: 262ED8DBB4222F7A

View File

@ -1643,7 +1643,7 @@ ruby_mn_threads_params(void)
#else #else
enable_mn_threads = false; enable_mn_threads = false;
if (RTEST(ruby_verbose)) { 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 #endif
} }
@ -1660,7 +1660,7 @@ ruby_mn_threads_params(void)
#if USE_MN_THREADS #if USE_MN_THREADS
fprintf(stderr, "RUBY_MAX_CPU = %d (default: %d)\n", max_cpu, default_max_cpu); fprintf(stderr, "RUBY_MAX_CPU = %d (default: %d)\n", max_cpu, default_max_cpu);
#else #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 #endif
} }
} }