Skip to content

Commit

Permalink
Updated builtin type names
Browse files Browse the repository at this point in the history
Fixnum and Bignum have been unified to Integer already.
  • Loading branch information
nobu committed Jun 15, 2020
1 parent 7a57110 commit e384707
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions error.c
Expand Up @@ -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 $~ */
Expand All @@ -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 */
Expand Down

0 comments on commit e384707

Please sign in to comment.