Skip to content

Commit c81b6fe

Browse files
committed
[exec] Use appropriate macros for concept references.
1 parent 8536e0d commit c81b6fe

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

source/exec.tex

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155

156156
\pnum
157157
Let \tcode{env} be an object of type \tcode{Env}.
158-
The type \tcode{Env} models queryable
158+
The type \tcode{Env} models \exposconcept{queryable}
159159
if for each callable object \tcode{q} and a pack of subexpressions \tcode{args},
160160
if \tcode{requires \{ q(env, args...) \}} is \tcode{true} then
161161
\tcode{q(env, args...)} meets any semantic requirements imposed by \tcode{q}.
@@ -2682,11 +2682,11 @@
26822682

26832683
\pnum
26842684
A \defnadj{pipeable}{sender adaptor closure object} is a function object
2685-
that accepts one or more \tcode{sender} arguments and returns a \tcode{sender}.
2685+
that accepts one or more \libconcept{sender} arguments and returns a \libconcept{sender}.
26862686
For a pipeable sender adaptor closure object \tcode{c} and
26872687
an expression \tcode{sndr}
2688-
such that \tcode{decltype((sndr))} models \tcode{sender},
2689-
the following expressions are equivalent and yield a \tcode{sender}:
2688+
such that \tcode{decltype((sndr))} models \libconcept{sender},
2689+
the following expressions are equivalent and yield a \libconcept{sender}:
26902690
\begin{codeblock}
26912691
c(sndr)
26922692
sndr | c
@@ -2719,7 +2719,7 @@
27192719
if \tcode{T} models \tcode{\libconcept{derived_from}<sender_adaptor_closure<T>>},
27202720
\tcode{T} has no other base classes
27212721
of type \tcode{sender_adaptor_closure<U>} for any other type \tcode{U}, and
2722-
\tcode{T} does not satisfy \tcode{sender}.
2722+
\tcode{T} does not satisfy \libconcept{sender}.
27232723

27242724
\pnum
27252725
The template parameter \tcode{D} for \tcode{sender_adaptor_closure} can be
@@ -2734,8 +2734,8 @@
27342734

27352735
\pnum
27362736
A \defnadj{pipeable}{sender adaptor object} is a customization point object
2737-
that accepts a \tcode{sender} as its first argument and
2738-
returns a \tcode{sender}.
2737+
that accepts a \libconcept{sender} as its first argument and
2738+
returns a \libconcept{sender}.
27392739
If a pipeable sender adaptor object accepts only one argument,
27402740
then it is a pipeable sender adaptor closure object.
27412741

@@ -5004,7 +5004,7 @@
50045004

50055005
\pnum
50065006
\exposid{run-loop-scheduler} is an unspecified type
5007-
that models \tcode{scheduler}.
5007+
that models \libconcept{scheduler}.
50085008

50095009
\pnum
50105010
Instances of \exposid{run-loop-scheduler} remain valid
@@ -5027,7 +5027,7 @@
50275027

50285028
\pnum
50295029
\exposid{run-loop-sender} is an exposition-only type
5030-
that satisfies \tcode{sender}.
5030+
that satisfies \libconcept{sender}.
50315031
For any type \tcode{Env},
50325032
\tcode{completion_signatures_of_t<\exposid{run-loop-sender}, Env>} is
50335033
\begin{codeblock}

0 commit comments

Comments
 (0)