@@ -5401,7 +5401,7 @@ template<class Initializer>
5401
5401
2. ... can be explicitly <dfn lt="start" export=true>started</dfn> once at
5402
5402
most.
5403
5403
5404
- 3. ... once started started , eventually <dfn lt="complete"
5404
+ 3. ... once started, eventually <dfn lt="complete"
5405
5405
export=true> completes</dfn> exactly once with a (possibly empty) set
5406
5406
of result datums and in exactly one of three <dfn export=true
5407
5407
lt="disposition"> dispositions</dfn> : success, failure, or
@@ -5493,7 +5493,7 @@ template<class Initializer>
5493
5493
associated operation state does not depend on the lifetimes of either the
5494
5494
sender or the receiver from which it was created. A sender is started when
5495
5495
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
5497
5497
operation created by connecting it to a receiver. A sender <dfn lt="send"
5498
5498
export=true> sends</dfn> its results by way of the asynchronous operation(s)
5499
5499
it produces, and a receiver <dfn lt="receive" export=true>receives</dfn>
@@ -7851,14 +7851,14 @@ namespace std::execution {
7851
7851
7852
7852
2. The name `on` denotes a pipeable sender adaptor object. For subexpressions
7853
7853
`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
7857
7857
7858
- * If `decltype((sndr))` does not satisfy `sender` and `sndr` is not
7858
+ * `decltype((sndr))` does not satisfy `sender` and `sndr` is not
7859
7859
a pipeable sender adaptor closure object ([exec.adapt.objects] ), or
7860
7860
7861
- * If `decltype((sndr))` satisfies `sender` and `sndr` is also
7861
+ * `decltype((sndr))` satisfies `sender` and `sndr` is also
7862
7862
a pipeable sender adaptor closure object.
7863
7863
7864
7864
3. Otherwise, if `decltype((sndr))` satisfies `sender`, the expression `on(sch,
0 commit comments