summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-11-19 00:51:47 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-11-19 00:51:47 +0900
commit7c3f9c8ce7bd01c1aae0255c427b2bd5b00f6831 (patch)
tree5d43982689160b3c9f80e8a23551dc35ee2548b6 /src
parent9980bc20bb9a2149c975dd25b4eb2cab664f99d0 (diff)
parent8dc4d9d97301dc3098dbfd562b701c021a2ce95a (diff)
downloadmruby-7c3f9c8ce7bd01c1aae0255c427b2bd5b00f6831.tar.gz
mruby-7c3f9c8ce7bd01c1aae0255c427b2bd5b00f6831.zip
Merge pull request #2637 from rmosolgo/not-implemented-error-msg
fix mrb_notimplement typo
Diffstat (limited to 'src')
-rw-r--r--src/class.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/class.c b/src/class.c
index d46862baf..4a010dcb5 100644
--- a/src/class.c
+++ b/src/class.c
@@ -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();