Skip to content

Commit cddc112

Browse files
authored
[range.iota.iterator,range.iota.sentinel] Fix markup around \libconcept (#4503)
...so it doesn't appear in the rendered text.
1 parent 825255f commit cddc112

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/ranges.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2304,7 +2304,7 @@
23042304
\begin{codeblock}
23052305
namespace std::ranges {
23062306
template<@\libconcept{weakly_incrementable}@ W, @\libconcept{semiregular}@ Bound>
2307-
requires @\exposconcept{weakly-equality-comparable-with}@<W, Bound> && \libconcept{semiregular}<W>
2307+
requires @\exposconcept{weakly-equality-comparable-with}@<W, Bound> && @\libconcept{semiregular}@<W>
23082308
struct iota_view<W, Bound>::@\exposid{iterator}@ {
23092309
private:
23102310
W @\exposid{value_}@ = W(); // \expos
@@ -2675,7 +2675,7 @@
26752675
\begin{codeblock}
26762676
namespace std::ranges {
26772677
template<@\libconcept{weakly_incrementable}@ W, @\libconcept{semiregular}@ Bound>
2678-
requires @\exposconcept{weakly-equality-comparable-with}@<W, Bound> && \libconcept{semiregular}<W>
2678+
requires @\exposconcept{weakly-equality-comparable-with}@<W, Bound> && @\libconcept{semiregular}@<W>
26792679
struct iota_view<W, Bound>::@\exposid{sentinel}@ {
26802680
private:
26812681
Bound @\exposid{bound_}@ = Bound(); // \expos

0 commit comments

Comments
 (0)