From Jason Turner

[alg.find.end]

Diff to HTML by rtfpessoa

tmp/tmp8cxnn1l_/{from.md → to.md} RENAMED
@@ -15,11 +15,11 @@ template<class ForwardIterator1, class ForwardIterator2,
15
  ```
16
 
17
  *Effects:* Finds a subsequence of equal values in a sequence.
18
 
19
  *Returns:* The last iterator `i` in the range \[`first1`,
20
- `last1 - (last2 - first2)`) such that for any non-negative integer
21
  `n < (last2 - first2)`, the following corresponding conditions hold:
22
  `*(i + n) == *(first2 + n), pred(*(i + n), *(first2 + n)) != false`.
23
  Returns `last1` if \[`first2`, `last2`) is empty or if no such iterator
24
  is found.
25
 
 
15
  ```
16
 
17
  *Effects:* Finds a subsequence of equal values in a sequence.
18
 
19
  *Returns:* The last iterator `i` in the range \[`first1`,
20
+ `last1 - (last2 - first2)`) such that for every non-negative integer
21
  `n < (last2 - first2)`, the following corresponding conditions hold:
22
  `*(i + n) == *(first2 + n), pred(*(i + n), *(first2 + n)) != false`.
23
  Returns `last1` if \[`first2`, `last2`) is empty or if no such iterator
24
  is found.
25