diff options
author | Nobuyoshi Nakada <[email protected]> | 2020-06-16 00:26:17 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2020-06-16 00:26:17 +0900 |
commit | e38470729672f589417f4843c508bc46c60a5238 (patch) | |
tree | 3fb191d4ed47b238af873c8a3f8f20b453a2531d /error.c | |
parent | 7a571103f231e8f9e7200aa40b9a56c3f34a2e80 (diff) |
Updated builtin type names
Fixnum and Bignum have been unified to Integer already.
Diffstat (limited to 'error.c')
-rw-r--r-- | error.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 */ |