Skip to content

Commit dd764eb

Browse files
authored
Fix overview.md (#131)
1 parent ed930ff commit dd764eb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/overview.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ static_assert(not std::execution::receiver_of<example_receiver,
158158
</details>
159159
<details>
160160
<summary><code>scheduler&lt;<i>Scheduler</i>&gt;</code></summary>
161-
Schedulers are used to specify the execution context where the asynchronous work is to be executed. A scheduler is a lightweight handle providing a <code><a href=‘#schedule’>schedule</a></code> operation yielding a <code><a href=‘sender’>sender<a/></code> with a value <a href=‘#completion-signal’>completion signal</a> without parameters. The completion is on the respective execution context.
161+
Schedulers are used to specify the execution context where the asynchronous work is to be executed. A scheduler is a lightweight handle providing a <code><a href=‘#schedule’>schedule</a></code> operation yielding a <code><a href=‘sender’>sender</a></code> with a value <a href=‘#completion-signal’>completion signal</a> without parameters. The completion is on the respective execution context.
162162
163163
Requirements for <code>_Scheduler_</code>:
164164
- The type <code>_Scheduler_::scheduler_concept</code> is an alias for `scheduler_t` or a type derived thereof`.
@@ -398,8 +398,8 @@ The queries are used to obtain properties associated with and object. Except <co
398398

399399
### Sender Factories
400400

401-
- <code>just(<i>value...</i>) -> <i>sender-of</i>&lt;set_value_t(<i>Value...</i>)&gt;</i></code>
402-
- <code>just_error(<i>error</i>) -> <i>sender-of</i>&lt;set_error_t(<i>Error</i>)&gt;</i></code>
401+
- <code>just(<i>value...</i>) -> <i>sender-of</i>&lt;set_value_t(<i>Value...</i>)&gt;</code>
402+
- <code>just_error(<i>error</i>) -> <i>sender-of</i>&lt;set_error_t(<i>Error</i>)&gt;</code>
403403
- <code>just_stopped() -> <i>sender-of</i>&lt;set_stopped_t()&gt;</code>
404404
- <code>read_env(<i>query</i>) -> <i>sender-of</i>&lt;set_value_t(<i>query-result</i>)&gt;</code>
405405
- <code>schedule(<i>scheduler</i>) -> <i>sender-of</i>&lt;set_value_t()&gt;</code>

0 commit comments

Comments
 (0)