Skip to content

Commit 6131935

Browse files
authored
Fix extraneous > in mismatch syntax in <algorithm> functions reference
1 parent 24da214 commit 6131935

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

docs/standard-library/algorithm-functions.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4949,13 +4949,14 @@ Use the dual-range overloads in C++14 code because the overloads that only take
49494949

49504950
```cpp
49514951
template<class InputIterator1, class InputIterator2>
4952-
pair<InputIterator1, InputIterator2>>
4952+
pair<InputIterator1, InputIterator2>
49534953
mismatch(
49544954
InputIterator1 first1,
49554955
InputIterator1 last1,
49564956
InputIterator2 first2 );
49574957

4958-
template<class InputIterator1, class InputIterator2, class BinaryPredicate> pair<InputIterator1, InputIterator2>>
4958+
template<class InputIterator1, class InputIterator2, class BinaryPredicate>
4959+
pair<InputIterator1, InputIterator2>
49594960
mismatch(
49604961
InputIterator1 first1,
49614962
InputIterator1 last1,
@@ -4964,14 +4965,15 @@ mismatch(
49644965

49654966
//C++14
49664967
template<class InputIterator1, class InputIterator2>
4967-
pair<InputIterator1, InputIterator2>>
4968+
pair<InputIterator1, InputIterator2>
49684969
mismatch(
49694970
InputIterator1 first1,
49704971
InputIterator1 last1,
49714972
InputIterator2 first2,
49724973
InputIterator2 last2 );
49734974

4974-
template<class InputIterator1, class InputIterator2, class BinaryPredicate> pair<InputIterator1, InputIterator2>>
4975+
template<class InputIterator1, class InputIterator2, class BinaryPredicate>
4976+
pair<InputIterator1, InputIterator2>
49754977
mismatch(
49764978
InputIterator1 first1,
49774979
InputIterator1 last1,

0 commit comments

Comments
 (0)