From 7d005ebee48df10ee91ce7781ea52b322947fa23 Mon Sep 17 00:00:00 2001 From: Yaswanth Naga Sai K <140506928+YASWANTH1976@users.noreply.github.com> Date: Tue, 6 Jan 2026 22:53:21 +0530 Subject: [PATCH] Fix grammar in binary_search docstring Corrected grammar and improved clarity in the binary search docstring. --- searches/binary_search.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/searches/binary_search.py b/searches/binary_search.py index 5125dc6bdb9a..397d8a96fa95 100644 --- a/searches/binary_search.py +++ b/searches/binary_search.py @@ -2,7 +2,8 @@ """ Pure Python implementations of binary search algorithms - +The collection must be sorted in ascending order; otherwise, the result will be +unpredictable. For doctests run the following command: python3 -m doctest -v binary_search.py