[Bug #20279] [DOC] Update for BasicObject

The current implementation raises on the call to super
This commit is contained in:
Earlopain 2024-03-19 13:49:05 +01:00 committed by GitHub
parent 12be40ae6b
commit e127289632
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
*