Skip to content

Commit 35fd448

Browse files
Andreas-Krugtkoeppe
authored andcommitted
[algorithm.syn] Fix indentation
1 parent 5eab5c6 commit 35fd448

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/algorithms.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1678,14 +1678,14 @@
16781678
@\libconcept{weakly_incrementable}@ O, @\libconcept{copy_constructible}@ F, class Proj1 = identity,
16791679
class Proj2 = identity>
16801680
requires @\libconcept{indirectly_writable}@<O, indirect_result_t<F&, projected<I1, Proj1>,
1681-
projected<I2, Proj2>>>
1681+
projected<I2, Proj2>>>
16821682
constexpr binary_transform_result<I1, I2, O>
16831683
transform(I1 first1, S1 last1, I2 first2, S2 last2, O result,
16841684
F binary_op, Proj1 proj1 = {}, Proj2 proj2 = {});
16851685
template<@\libconcept{input_range}@ R1, @\libconcept{input_range}@ R2, @\libconcept{weakly_incrementable}@ O,
16861686
@\libconcept{copy_constructible}@ F, class Proj1 = identity, class Proj2 = identity>
16871687
requires @\libconcept{indirectly_writable}@<O, indirect_result_t<F&, projected<iterator_t<R1>, Proj1>,
1688-
projected<iterator_t<R2>, Proj2>>>
1688+
projected<iterator_t<R2>, Proj2>>>
16891689
constexpr binary_transform_result<borrowed_iterator_t<R1>, borrowed_iterator_t<R2>, O>
16901690
transform(R1&& r1, R2&& r2, O result,
16911691
F binary_op, Proj1 proj1 = {}, Proj2 proj2 = {});

0 commit comments

Comments
 (0)