fix find_first_of document(Complexity)

This commit is contained in:
Mitsuru Kariya 2013-08-27 17:20:36 +09:00
parent 2e71fabb24
commit b580af2093

View file

@ -51,7 +51,7 @@ Examples
Complexity 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. | Recursive function invocations in *O(logN)* (logarithmic) depth.
Header Header