summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-method/src/method.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2019-02-28 12:59:16 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2019-02-28 12:59:16 +0900
commitd25b9c9d0ef6498dd9ae58fcf6bb9b438cfcccb0 (patch)
tree43f7f1768b4b3d2a898faa3733e7e0b498e0febd /mrbgems/mruby-method/src/method.c
parentf1fb2bf29eeb8144326230b62c83b9ec72a89a59 (diff)
downloadmruby-d25b9c9d0ef6498dd9ae58fcf6bb9b438cfcccb0.tar.gz
mruby-d25b9c9d0ef6498dd9ae58fcf6bb9b438cfcccb0.zip
Remove unnecessary backticks; ref #4301
Diffstat (limited to 'mrbgems/mruby-method/src/method.c')
-rw-r--r--mrbgems/mruby-method/src/method.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-method/src/method.c b/mrbgems/mruby-method/src/method.c
index 600567cac..fa8985694 100644
--- a/mrbgems/mruby-method/src/method.c
+++ b/mrbgems/mruby-method/src/method.c
@@ -327,7 +327,7 @@ name_error:
s = mrb_class_name(mrb, c);
mrb_raisef(
mrb, E_NAME_ERROR,
- "undefined method `%S' for class `%S'",
+ "undefined method '%S' for class '%S'",
mrb_sym2str(mrb, name),
mrb_str_new_static(mrb, s, strlen(s))
);