diff --git a/docs/_sources/libs/sprout/algorithm/find_first_of.txt b/docs/_sources/libs/sprout/algorithm/find_first_of.txt index 3c528786..70d1628e 100644 --- a/docs/_sources/libs/sprout/algorithm/find_first_of.txt +++ b/docs/_sources/libs/sprout/algorithm/find_first_of.txt @@ -51,7 +51,7 @@ Examples Complexity ======================================== -| At most ``(last2 - first2) * (last1 - first1 - (last2 - first2) + 1)`` applications of the corresponding predicate. +| At most ``(last1 - first1) * (last2 - first2)`` applications of the corresponding predicate. | Recursive function invocations in *O(logN)* (logarithmic) depth. Header diff --git a/docs/libs/sprout/algorithm/find_first_of.html b/docs/libs/sprout/algorithm/find_first_of.html index 3ebd332c..29b661a2 100644 --- a/docs/libs/sprout/algorithm/find_first_of.html +++ b/docs/libs/sprout/algorithm/find_first_of.html @@ -142,7 +142,7 @@

ComplexityΒΆ

-
At most (last2 - first2) * (last1 - first1 - (last2 - first2) + 1) applications of the corresponding predicate.
+
At most (last1 - first1) * (last2 - first2) applications of the corresponding predicate.
Recursive function invocations in O(logN) (logarithmic) depth.