diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-10-21 02:38:26 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-10-21 02:38:26 +0000 |
commit | 543acfabdc10420c1076dafb01c2a125e5fa7174 (patch) | |
tree | 674e4dfdedf70fe02ea661a6c9cbebb5eb8c8569 | |
parent | 40d070843de3c43cc016e25bc014835dcf39c7c9 (diff) | |
download | bundler-543acfabdc10420c1076dafb01c2a125e5fa7174.tar.gz |
fix a warning message.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65264 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ruby.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1340,7 +1340,7 @@ proc_options(long argc, char **argv, ruby_cmdline_options_t *opt, int envopt) opt->features |= FEATURE_BIT(jit); setup_mjit_options(s + 3, &opt->mjit); #else - rb_warn("MJIT is disabled."); + rb_warn("MJIT support is disabled."); #endif } else if (strcmp("yydebug", s) == 0) { |