From e38470729672f589417f4843c508bc46c60a5238 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 16 Jun 2020 00:26:17 +0900 Subject: [PATCH] Updated builtin type names Fixnum and Bignum have been unified to Integer already. --- error.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/error.c b/error.c index 553f9c7daa..e3d9974555 100644 --- a/error.c +++ b/error.c @@ -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 */ -- GitLab