Skip to content

Commit

Permalink
Merge pull request #260 from cplusplus/last-last-edits
Browse files Browse the repository at this point in the history
final edits fr
  • Loading branch information
ericniebler authored Jun 28, 2024
2 parents fb3befc + 703bf71 commit 02b2b99
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions execution.bs
Original file line number Diff line number Diff line change
Expand Up @@ -5401,7 +5401,7 @@ template<class Initializer>
2. ... can be explicitly <dfn lt="start" export=true>started</dfn> once at
most.

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

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

* `decltype((sch))` does not satisfy `scheduler`, or

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

* If `decltype((sndr))` satisfies `sender` and `sndr` is also
* `decltype((sndr))` satisfies `sender` and `sndr` is also
a pipeable sender adaptor closure object.

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

0 comments on commit 02b2b99

Please sign in to comment.