diff options
author | Earlopain <14981592+Earlopain@users.noreply.github.com> | 2024-03-19 13:49:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-19 21:49:05 +0900 |
commit | e127289632396f268099c9815a59bc7e7f13b3ec (patch) | |
tree | 9ccfa132b651faed3859ae1434e2be7083a70ae7 /object.c | |
parent | 12be40ae6be78ac41e8e3f3c313cc6f63e7fa6c4 (diff) |
[Bug #20279] [DOC] Update for `BasicObject`
The current implementation raises on the call to super
Diffstat (limited to 'object.c')
-rw-r--r-- | object.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4096,7 +4096,7 @@ rb_f_loop_size(VALUE self, VALUE args, VALUE eobj) * end * * def respond_to_missing?(name, include_private = false) - * DELEGATE.include?(name) or super + * DELEGATE.include?(name) * end * end * |