summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-06-16 00:26:17 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-06-16 00:26:17 +0900
commite38470729672f589417f4843c508bc46c60a5238 (patch)
tree3fb191d4ed47b238af873c8a3f8f20b453a2531d
parent7a571103f231e8f9e7200aa40b9a56c3f34a2e80 (diff)
Updated builtin type names
Fixnum and Bignum have been unified to Integer already.
-rw-r--r--error.c4
1 files 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 */