diff options
| -rw-r--r-- | src/string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string.c b/src/string.c index 77f81ecc6..7cd727806 100644 --- a/src/string.c +++ b/src/string.c @@ -2531,7 +2531,7 @@ mrb_init_string(mrb_state *mrb) { struct RClass *s; - s = mrb->string_class = mrb_define_class(mrb, "String", mrb->object_class); + s = mrb->string_class = mrb_define_class(mrb, "String", mrb->object_class); /* 15.2.10 */ MRB_SET_INSTANCE_TT(s, MRB_TT_STRING); mrb_include_module(mrb, s, mrb_class_get(mrb, "Comparable")); |
