1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Updated builtin type names

Fixnum and Bignum have been unified to Integer already.
This commit is contained in:
Nobuyoshi Nakada 2020-06-16 00:26:17 +09:00
parent 7a571103f2
commit e384707296
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -753,7 +753,7 @@ static const char builtin_types[][10] = {
"Array",
"Hash",
"Struct",
"Bignum",
"Integer",
"File",
"Data", /* internal use: wrapped C pointers */
"MatchData", /* data of $~ */
@ -764,7 +764,7 @@ static const char builtin_types[][10] = {
"true",
"false",
"Symbol", /* :symbol */
"Fixnum",
"Integer",
"undef", /* internal use: #undef; should not happen */
"", /* 0x17 */
"", /* 0x18 */