diff options
author | Kazuhiro NISHIYAMA <[email protected]> | 2020-09-15 14:03:22 +0900 |
---|---|---|
committer | Kazuhiro NISHIYAMA <[email protected]> | 2020-09-15 14:03:22 +0900 |
commit | f3754dfc2eb315046de48bf22b4d5c7a923485ba (patch) | |
tree | 1a2f9b76a5a0bf35a97f121530c661e334b4c58a /error.c | |
parent | 29b1ac613bf9345e2c276cba2f2fd9af714da15c (diff) |
Fix missing `"` [ci skip]
Diffstat (limited to 'error.c')
-rw-r--r-- | error.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2630,7 +2630,7 @@ exception_loader(VALUE exc, VALUE obj) // In the former case, the first argument is an instance of Exception (because // we pass rb_eException to rb_marshal_define_compat). In the latter case, the first // argument is a class object (see TYPE_USERDEF case in r_object0). - // We want to copy all instance variables (but "bt_locations) from obj to exc. + // We want to copy all instance variables (but "bt_locations") from obj to exc. // But we do not want to do so in the second case, so the following branch is for that. if (RB_TYPE_P(exc, T_CLASS)) return obj; // maybe called from Marshal's TYPE_USERDEF |