From 740ffdc839a9d36ff558e1c446e92ea7d359cd8b Mon Sep 17 00:00:00 2001 From: eirinisp <44125968+eirinisp@users.noreply.github.com> Date: Tue, 20 Nov 2018 11:24:34 +0200 Subject: [PATCH] Fixed grammatical errors (#25341) --- .../algorithms/search-algorithms/exponential-search/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/algorithms/search-algorithms/exponential-search/index.md b/guide/english/algorithms/search-algorithms/exponential-search/index.md index 19a48ca05b..c254bd289a 100644 --- a/guide/english/algorithms/search-algorithms/exponential-search/index.md +++ b/guide/english/algorithms/search-algorithms/exponential-search/index.md @@ -3,8 +3,8 @@ title: Exponential Search --- ## Exponential Search -Exponential Search also known as finger search, searchs for an element in a sorted array by jumping `2^i` elements every iteration where i represents the -value of loop control variable, and then verifying if the search element is present between last jump and the current jump +Exponential Search, also known as finger search, searches for an element in a sorted array by jumping `2^i` elements in every iteration, where i represents the +value of loop control variable, and then verifying if the search element is present between the last jump and the current jump. # Complexity Worst Case O(log(N))