Skip to content

Commit 02b2b99

Browse files
authored
Merge pull request #260 from cplusplus/last-last-edits
final edits fr
2 parents fb3befc + 703bf71 commit 02b2b99

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

execution.bs

+7-7
Original file line numberDiff line numberDiff line change
@@ -5401,7 +5401,7 @@ template<class Initializer>
54015401
2. ... can be explicitly <dfn lt="start" export=true>started</dfn> once at
54025402
most.
54035403

5404-
3. ... once started started, eventually <dfn lt="complete"
5404+
3. ... once started, eventually <dfn lt="complete"
54055405
export=true>completes</dfn> exactly once with a (possibly empty) set
54065406
of result datums and in exactly one of three <dfn export=true
54075407
lt="disposition">dispositions</dfn>: success, failure, or
@@ -5493,7 +5493,7 @@ template&lt;class Initializer>
54935493
associated operation state does not depend on the lifetimes of either the
54945494
sender or the receiver from which it was created. A sender is started when
54955495
it is connected to a receiver and the resulting asynchronous operation is
5496-
started. A sender's async result is the async result of an asynchronous
5496+
started. A sender's async result is the async result of the asynchronous
54975497
operation created by connecting it to a receiver. A sender <dfn lt="send"
54985498
export=true>sends</dfn> its results by way of the asynchronous operation(s)
54995499
it produces, and a receiver <dfn lt="receive" export=true>receives</dfn>
@@ -7851,14 +7851,14 @@ namespace std::execution {
78517851

78527852
2. The name `on` denotes a pipeable sender adaptor object. For subexpressions
78537853
`sch` and `sndr`, `on(sch, sndr)` is ill-formed if any of the following
7854-
are `true`:
7855-
7856-
* If `decltype((sch))` does not satisfy `scheduler`, or
7854+
is true:
7855+
7856+
* `decltype((sch))` does not satisfy `scheduler`, or
78577857

7858-
* If `decltype((sndr))` does not satisfy `sender` and `sndr` is not
7858+
* `decltype((sndr))` does not satisfy `sender` and `sndr` is not
78597859
a pipeable sender adaptor closure object ([exec.adapt.objects]), or
78607860

7861-
* If `decltype((sndr))` satisfies `sender` and `sndr` is also
7861+
* `decltype((sndr))` satisfies `sender` and `sndr` is also
78627862
a pipeable sender adaptor closure object.
78637863

78647864
3. Otherwise, if `decltype((sndr))` satisfies `sender`, the expression `on(sch,

0 commit comments

Comments
 (0)