Remove the obsolete term Fixnum.

Except for compatibility code.
This commit is contained in:
Yukihiro "Matz" Matsumoto
2021-05-11 07:36:34 +09:00
parent 23019213b7
commit 2a280a8f70
3 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -409,7 +409,7 @@ mrb_check_type(mrb_state *mrb, mrb_value x, enum mrb_vtype t)
ename = "nil";
}
else if (mrb_integer_p(x)) {
ename = "Fixnum";
ename = "Integer";
}
else if (mrb_symbol_p(x)) {
ename = "Symbol";