From 2003a41f0f70d6a3bf873aee3b4d94e3b597eda9 Mon Sep 17 00:00:00 2001 From: Haoyu Qiu Date: Fri, 26 Feb 2021 18:01:08 +0800 Subject: [PATCH] Fixes typo in Array::bsearch_custom doc (cherry picked from commit 31243e377f1d2b934322c6c7b7e0573cc63e6c66) --- doc/classes/Array.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/Array.xml b/doc/classes/Array.xml index e77e156d5de..facd81ca9d8 100644 --- a/doc/classes/Array.xml +++ b/doc/classes/Array.xml @@ -165,7 +165,7 @@ # `compare` is defined in this object, so we use `self` as the `obj` parameter. print(a.bsearch_custom("three", self, "compare", true)) # Expected value is 2. [/codeblock] - [b]Note:[/b] Calling [method bsearch] on an unsorted array results in unexpected behavior. + [b]Note:[/b] Calling [method bsearch_custom] on an unsorted array results in unexpected behavior.