Skip to content

Commit 80020cb

Browse files
committed
[algorithms] Fix some bad indentation in itemdecls.
1 parent 199d41f commit 80020cb

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
@@ -3305,13 +3305,13 @@
33053305
requires indirectly_comparable<I1, I2, Pred, Proj1, Proj2>
33063306
constexpr subrange<I1>
33073307
ranges::find_end(I1 first1, S1 last1, I2 first2, S2 last2, Pred pred = {},
3308-
Proj1 proj1 = {}, Proj2 proj2 = {});
3308+
Proj1 proj1 = {}, Proj2 proj2 = {});
33093309
template<forward_range R1, forward_range R2,
33103310
class Pred = ranges::equal_to, class Proj1 = identity, class Proj2 = identity>
33113311
requires indirectly_comparable<iterator_t<R1>, iterator_t<R2>, Pred, Proj1, Proj2>
33123312
constexpr safe_subrange_t<R1>
33133313
ranges::find_end(R1&& r1, R2&& r2, Pred pred = {},
3314-
Proj1 proj1 = {}, Proj2 proj2 = {});
3314+
Proj1 proj1 = {}, Proj2 proj2 = {});
33153315
\end{itemdecl}
33163316

33173317
\begin{itemdescr}
@@ -6767,7 +6767,7 @@
67676767
requires indirectly_copyable<I, O1> && indirectly_copyable<I, O2>
67686768
constexpr ranges::partition_copy_result<I, O1, O2>
67696769
ranges::partition_copy(I first, S last, O1 out_true, O2 out_false, Pred pred,
6770-
Proj proj = {});
6770+
Proj proj = {});
67716771
template<input_range R, weakly_incrementable O1, weakly_incrementable O2,
67726772
class Proj = identity,
67736773
indirect_unary_predicate<projected<iterator_t<R>, Proj>> Pred>

0 commit comments

Comments
 (0)