summaryrefslogtreecommitdiff
path: root/object.c
diff options
context:
space:
mode:
authorEarlopain <14981592+Earlopain@users.noreply.github.com>2024-03-19 13:49:05 +0100
committerGitHub <noreply@github.com>2024-03-19 21:49:05 +0900
commite127289632396f268099c9815a59bc7e7f13b3ec (patch)
tree9ccfa132b651faed3859ae1434e2be7083a70ae7 /object.c
parent12be40ae6be78ac41e8e3f3c313cc6f63e7fa6c4 (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.c2
1 files changed, 1 insertions, 1 deletions
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
*