Fix typo in anonymous class string

If anonymous was shorted it should be `anon` not `annon`. Fixes typo in
APPEND_S for anonymous classes.
This commit is contained in:
eileencodes 2023-08-01 14:20:05 -04:00 committed by Hiroshi SHIBATA
parent 00054de6b5
commit b92d599eec
Notes: git 2023-08-23 04:09:38 +00:00

2
gc.c
View File

@ -13441,7 +13441,7 @@ rb_raw_obj_info_buitin_type(char *const buff, const size_t buff_size, const VALU
APPEND_F("%s", RSTRING_PTR(class_path));
}
else {
APPEND_S("(annon)");
APPEND_S("(anon)");
}
break;
}