Skip to content

Commit 24da214

Browse files
authored
Remove 1 double and trailing space in <algorithm> functions reference
1 parent 03ace2f commit 24da214

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/standard-library/algorithm-functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2292,7 +2292,7 @@ public:
22922292
}
22932293
};
22942294

2295-
// Utility to display the contents of a vector
2295+
// Utility to display the contents of a vector
22962296
template <class T> void print_vector(const std::vector<T> &vec)
22972297
{
22982298
std::cout << "( ";
@@ -6660,7 +6660,7 @@ Vector v2 is a copy of v1 with the value 7 removed:
66606660

66616661
## <a name="remove_copy_if"></a> `remove_copy_if`
66626662

6663-
Copies elements from a source range to a destination range, except for elements that satisfy a predicate. Elements are copied without disturbing the order of the remaining elements. Returns the end of a new destination range.
6663+
Copies elements from a source range to a destination range, except for elements that satisfy a predicate. Elements are copied without disturbing the order of the remaining elements. Returns the end of a new destination range.
66646664

66656665
```cpp
66666666
template<class InputIterator, class OutputIterator, class UnaryPredicate>

0 commit comments

Comments
 (0)