We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7780d3b commit 8db3642Copy full SHA for 8db3642
box.c
@@ -929,11 +929,11 @@ rb_box_inspect(VALUE obj)
929
rb_box_t *box;
930
VALUE r;
931
if (obj == Qfalse) {
932
- r = rb_str_new_cstr("#<Namespace:root>");
+ r = rb_str_new_cstr("#<Ruby::Box:root>");
933
return r;
934
}
935
box = rb_get_box_t(obj);
936
- r = rb_str_new_cstr("#<Namespace:");
+ r = rb_str_new_cstr("#<Ruby::Box:");
937
rb_str_concat(r, rb_funcall(LONG2NUM(box->box_id), rb_intern("to_s"), 0));
938
if (BOX_ROOT_P(box)) {
939
rb_str_cat_cstr(r, ",root");
0 commit comments