[DOC] Related for Array#all? and Array#any? (#11495)

This commit is contained in:
Burdette Lamar 2024-08-29 15:31:26 -05:00 committed by GitHub
parent af65b41e07
commit b1c569c193
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
Notes: git 2024-08-29 20:31:46 +00:00
Merged-By: peterzhu2118 <peter@peterzhu.ca>

View File

@ -7771,7 +7771,7 @@ rb_ary_drop_while(VALUE ary)
* <b>Special case</b>: 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)
* <b>Special case</b>: 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