diff options
author | BurdetteLamar <[email protected]> | 2024-08-14 21:25:52 +0100 |
---|---|---|
committer | Peter Zhu <[email protected]> | 2024-08-15 12:48:27 -0400 |
commit | edda29a1173a72ce32e5fbd860ef0e2f78b7b1c9 (patch) | |
tree | e7a4621ec64d9abfea31f5c3d8cc428809826922 | |
parent | 1f994683b6dfb548e066cb3e1b4934b72adf3e45 (diff) |
[DOC] Fix Related for Array#all?
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/11381
-rw-r--r-- | array.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7827,7 +7827,7 @@ rb_ary_any_p(int argc, VALUE *argv, VALUE ary) * <b>Special case</b>: returns +true+ if +self+ is empty * (regardless of any given argument or block). * - * Related: Enumerable#all? + * Related: Array#any?, Array#none?, Array#one?. */ static VALUE |