From e127289632396f268099c9815a59bc7e7f13b3ec Mon Sep 17 00:00:00 2001 From: Earlopain <14981592+Earlopain@users.noreply.github.com> Date: Tue, 19 Mar 2024 13:49:05 +0100 Subject: [PATCH] [Bug #20279] [DOC] Update for `BasicObject` The current implementation raises on the call to super --- object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/object.c b/object.c index 572f577312..3b856c730a 100644 --- a/object.c +++ b/object.c @@ -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 *