Skip to content

Commit 6bb5036

Browse files
authored
Minor documentation fixes (#148)
* minor documentation fixes * remove stray `
1 parent ec90539 commit 6bb5036

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/contributing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Contributing to `beman::execution`
44

55
We welcome all constructive contributions! You will have something you
6-
can contribute independent of your level expertise!
6+
can contribute independent of your level of expertise!
77

88
There is a huge range of contributions needed and welcome! Here is an
99
incomplete list of starting points for contributions:
@@ -21,7 +21,7 @@ incomplete list of starting points for contributions:
2121
* The layout of some pages related to the project can be improved.
2222
* Some behaviour of a component isn't tested or documented.
2323
* You found something which should be linked from the
24-
[resources](https://github.com/bemanproject/execution/blob/main/docs/contributing.md) page.
24+
[resources](https://github.com/bemanproject/execution/blob/main/docs/resources.md) page.
2525
* There are [pull requests](https://github.com/bemanproject/execution/pulls)
2626
which could be reviewed.
2727
* This very page or list is lacking something.

docs/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ static_assert(not std::execution::receiver_of<example_receiver,
161161
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>:
164-
- The type <code>_Scheduler_::scheduler_concept</code> is an alias for `scheduler_t` or a type derived thereof`.
164+
- The type <code>_Scheduler_::scheduler_concept</code> is an alias for `scheduler_t` or a type derived thereof.
165165
- <code><a href=‘#schedule’>schedule</a>(_scheduler_) -> <a href=‘sender’>sender</a></code>
166166
- The <a href=‘#get-completion-scheduler’>value completion scheduler</a> of the <code><a href=‘sender’>sender</a></code>’s <a href=‘#environment’>environment</a> is the <code>_scheduler_</code>:
167167
_scheduler_ == std::execution::get_completion_scheduler&lt;std::execution::set_value_t&gt;(

0 commit comments

Comments
 (0)