Skip to content

Commit 524b3b6

Browse files
authored
[algorithm.syn] Fix indentation (#7580)
1 parent ce5fd62 commit 524b3b6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/algorithms.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1444,7 +1444,7 @@
14441444
template<@\libconcept{bidirectional_iterator}@ I, @\libconcept{sentinel_for}@<I> S,
14451445
@\exposconcept{indirectly-binary-right-foldable}@<iter_value_t<I>, I> F>
14461446
requires @\libconcept{constructible_from}@<iter_value_t<I>, iter_reference_t<I>>
1447-
constexpr auto fold_right_last(I first, S last, F f);
1447+
constexpr auto fold_right_last(I first, S last, F f);
14481448

14491449
template<@\libconcept{bidirectional_range}@ R,
14501450
@\exposconcept{indirectly-binary-right-foldable}@<range_value_t<R>, iterator_t<R>> F>
@@ -2200,7 +2200,7 @@
22002200
constexpr void stable_sort(RandomAccessIterator first, RandomAccessIterator last);
22012201
template<class RandomAccessIterator, class Compare>
22022202
constexpr void stable_sort(RandomAccessIterator first, RandomAccessIterator last,
2203-
Compare comp);
2203+
Compare comp);
22042204
template<class ExecutionPolicy, class RandomAccessIterator>
22052205
void stable_sort(ExecutionPolicy&& exec, // see \ref{algorithms.parallel.overloads}
22062206
RandomAccessIterator first, RandomAccessIterator last);
@@ -2696,7 +2696,7 @@
26962696
OutputIterator result);
26972697
template<class InputIterator1, class InputIterator2, class OutputIterator, class Compare>
26982698
constexpr OutputIterator
2699-
set_union(InputIterator1 first1, InputIterator1 last1,
2699+
set_union(InputIterator1 first1, InputIterator1 last1,
27002700
InputIterator2 first2, InputIterator2 last2,
27012701
OutputIterator result, Compare comp);
27022702
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2,

0 commit comments

Comments
 (0)