Remove unnecessary backticks in src/range.c; ref #2858

This commit is contained in:
KOBAYASHI Shuji
2019-06-28 19:27:58 +09:00
parent dc03bea854
commit c9a3867ff2
+1 -1
View File
@@ -92,7 +92,7 @@ range_ptr_init(mrb_state *mrb, struct RRange *r, mrb_value beg, mrb_value end, m
if (r) {
if (RANGE_INITIALIZED_P(r)) {
/* Ranges are immutable, so that they should be initialized only once. */
mrb_name_error(mrb, mrb_intern_lit(mrb, "initialize"), "`initialize' called twice");
mrb_name_error(mrb, mrb_intern_lit(mrb, "initialize"), "'initialize' called twice");
}
else {
range_ptr_alloc_edges(mrb, r);