diff options
author | ydah <[email protected]> | 2025-06-15 21:09:34 +0900 |
---|---|---|
committer | Yudai Takada <[email protected]> | 2025-06-15 22:35:26 +0900 |
commit | 251cfdfe22bf53e88a140f419d9db0be139ca68e (patch) | |
tree | 1c3c5c286366f8dbbf4536e2ba9cff02e6e9cbf8 /object.c | |
parent | ef66aef7912eb41c1d0d0733fe51375932e38a99 (diff) |
Fix typo in rb_bug message for unreachable code
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/13620
Diffstat (limited to 'object.c')
-rw-r--r-- | object.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -378,7 +378,7 @@ init_copy(VALUE dest, VALUE obj) RBASIC(dest)->flags |= RBASIC(obj)->flags & T_MASK; switch (BUILTIN_TYPE(obj)) { case T_IMEMO: - rb_bug("Unreacheable"); + rb_bug("Unreachable"); break; case T_CLASS: case T_MODULE: |