From d8b2fadbc45d4d45174fdc434d7ccf0e2b90a2d5 Mon Sep 17 00:00:00 2001 From: Mitsuru Kariya Date: Tue, 20 Aug 2013 22:28:22 +0900 Subject: [PATCH] fix adjacent_find typo --- source/libs/sprout/algorithm/adjacent_find.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libs/sprout/algorithm/adjacent_find.rst b/source/libs/sprout/algorithm/adjacent_find.rst index 5cd76848..b4e1b312 100644 --- a/source/libs/sprout/algorithm/adjacent_find.rst +++ b/source/libs/sprout/algorithm/adjacent_find.rst @@ -38,7 +38,7 @@ Examples Complexity ======================================== -| For a nonempty range, exactly ``min((i - first) + 1, (last - first) - 1)`` applications of the corresponding predicate, where i is adjacent_findfs return value. +| For a nonempty range, exactly ``min((i - first) + 1, (last - first) - 1)`` applications of the corresponding predicate, where i is adjacent_find's return value. | Recursive function invocations in *O(logN)* (logarithmic) depth. Header