Skip to content

Commit 12b6307

Browse files
authored
[algorithm.syn,alg.fill] Fix typos in constraints (#6957)
1 parent dad191d commit 12b6307

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
@@ -1672,7 +1672,7 @@
16721672
requires @\libconcept{output_range}@<R, const T&>
16731673
constexpr borrowed_iterator_t<R> fill(R&& r, const T& value);
16741674
template<class O, class T = iter_value_t<O>>
1675-
requires @\libconcept{output_iterator}@<O, const T&> O>
1675+
requires @\libconcept{output_iterator}@<O, const T&>
16761676
constexpr O fill_n(O first, iter_difference_t<O> n, const T& value);
16771677
}
16781678

@@ -5692,10 +5692,10 @@
56925692
requires @\libconcept{output_iterator}@<O, const T&>
56935693
constexpr O ranges::fill(O first, S last, const T& value);
56945694
template<class R, class T = range_value_t<R>>
5695-
requires @\libconcept{output_range}@<R, const T&>>
5695+
requires @\libconcept{output_range}@<R, const T&>
56965696
constexpr borrowed_iterator_t<R> ranges::fill(R&& r, const T& value);
56975697
template<class O, class T = iter_value_t<O>>
5698-
requires @\libconcept{output_iterator}@<O, const T&>>
5698+
requires @\libconcept{output_iterator}@<O, const T&>
56995699
constexpr O ranges::fill_n(O first, iter_difference_t<O> n, const T& value);
57005700
\end{itemdecl}
57015701

0 commit comments

Comments
 (0)