From b1c569c1936bc644e99b5892b5fc0e522b0816d9 Mon Sep 17 00:00:00 2001 From: Burdette Lamar Date: Thu, 29 Aug 2024 15:31:26 -0500 Subject: [PATCH] [DOC] Related for Array#all? and Array#any? (#11495) --- array.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/array.c b/array.c index 7c9fd03bb2..2d407e04d5 100644 --- a/array.c +++ b/array.c @@ -7771,7 +7771,7 @@ rb_ary_drop_while(VALUE ary) * Special case: returns +false+ if +self+ is empty * (regardless of any given argument or block). * - * Related: Array#all?, Array#none?, Array#one?. + * Related: see {Methods for Querying}[rdoc-ref:Array@Methods+for+Querying]. */ static VALUE @@ -7838,7 +7838,7 @@ rb_ary_any_p(int argc, VALUE *argv, VALUE ary) * Special case: returns +true+ if +self+ is empty * (regardless of any given argument or block). * - * Related: Array#any?, Array#none?, Array#one?. + * Related: see {Methods for Querying}[rdoc-ref:Array@Methods+for+Querying]. */ static VALUE