summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2019-06-28 20:07:34 +0900
committerGitHub <[email protected]>2019-06-28 20:07:34 +0900
commitcf7a2292f345be5e8988fa532b85ac40b27c7cab (patch)
tree83c89f4fabac5ee2db37aabd26f3953b3c32f13d
parentdc03bea85498a1573a78234959ee528af1e1c170 (diff)
parentc9a3867ff22a1158b88c1f9119ce3c9e08085e98 (diff)
downloadmruby-cf7a2292f345be5e8988fa532b85ac40b27c7cab.tar.gz
mruby-cf7a2292f345be5e8988fa532b85ac40b27c7cab.zip
Merge pull request #4539 from shuujii/remove-unnecessary-backticks-in-src-range.c
Remove unnecessary backticks in `src/range.c`; ref #2858
-rw-r--r--src/range.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/range.c b/src/range.c
index 9036ef093..c9dfb2b3c 100644
--- a/src/range.c
+++ b/src/range.c
@@ -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);