summaryrefslogtreecommitdiff
path: root/array.c
diff options
context:
space:
mode:
authorStan Lo <stan001212@gmail.com>2025-11-27 20:12:24 +0000
committerGitHub <noreply@github.com>2025-11-27 20:12:24 +0000
commit4cd6661e1853930c8002174c4ccd14f927fcd33b (patch)
treef76523b5a51d2ab3b86f8fac8136ec43517f8f6c /array.c
parent2f192c73cccdfd81e4ac2206feadc48b2757c19c (diff)
Reorganize page documentations (#15154)
Re-organize page docs
Diffstat (limited to 'array.c')
-rw-r--r--array.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/array.c b/array.c
index b71123532d..2ea6b55a7f 100644
--- a/array.c
+++ b/array.c
@@ -3521,7 +3521,7 @@ static VALUE rb_ary_bsearch_index(VALUE ary);
* Returns the element from +self+ found by a binary search,
* or +nil+ if the search found no suitable element.
*
- * See {Binary Searching}[rdoc-ref:bsearch.rdoc].
+ * See {Binary Searching}[rdoc-ref:language/bsearch.rdoc].
*
* Related: see {Methods for Fetching}[rdoc-ref:Array@Methods+for+Fetching].
*/
@@ -3545,7 +3545,7 @@ rb_ary_bsearch(VALUE ary)
* Returns the integer index of the element from +self+ found by a binary search,
* or +nil+ if the search found no suitable element.
*
- * See {Binary Searching}[rdoc-ref:bsearch.rdoc].
+ * See {Binary Searching}[rdoc-ref:language/bsearch.rdoc].
*
* Related: see {Methods for Fetching}[rdoc-ref:Array@Methods+for+Fetching].
*/