Commit 7c3f9c8c authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #2637 from rmosolgo/not-implemented-error-msg

fix mrb_notimplement typo
parents 9980bc20 8dc4d9d9
......@@ -373,7 +373,7 @@ mrb_notimplement(mrb_state *mrb, mrb_value self)
if (ci->mid) {
str = mrb_sym2name_len(mrb, ci->mid, &len);
mrb_raisef(mrb, E_NOTIMP_ERROR,
"%S() function is unimplemented on this machine not implemented",
"%S() function is unimplemented on this machine",
mrb_str_new_static(mrb, str, (size_t)len));
}
return mrb_nil_value();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment