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