Merge pull request #4539 from shuujii/remove-unnecessary-backticks-in-src-range.c

Remove unnecessary backticks in `src/range.c`; ref #2858
This commit is contained in:
Yukihiro "Matz" Matsumoto
2019-06-28 20:07:34 +09:00
committed by GitHub
+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);