Skip to content

Commit 17ed929

Browse files
committed
fix trailing space
1 parent 76e383d commit 17ed929

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/overview.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ static_assert(not std::execution::unstoppable_token<std::execution::inline_stop_
352352
</details>
353353

354354
## Queries
355-
The queries are used to obtain properties associated with and object. Except <code><a href=‘#forwarding-query’>forwarding_query</a></code>, <code><a href=‘#get-env’>get_env</a></code>, and <code><a href=‘#get-completion-signatures’>get_completion_signatures</a></code> the queries work on <a href=‘#environment’>environments</a>. The
355+
The queries are used to obtain properties associated with an object. Except <code><a href=‘#forwarding-query’>forwarding_query</a></code>, <code><a href=‘#get-env’>get_env</a></code>, and <code><a href=‘#get-completion-signatures’>get_completion_signatures</a></code> the queries work on <a href=‘#environment’>environments</a>. The
356356
<a href=‘#environment’>environment</a> queries are defined by providing a member <code>query(<i>query_t</i>, <i>a...</i>) const</code> on the <a href=‘#environment’>environment</a> object.
357357
<details>
358358
<summary>Example defining a query on an environment</summary>
@@ -361,12 +361,12 @@ This example shows how to define an environment class which provides a <a href=
361361
```
362362
struct alloc_env {
363363
std::pmr::memory_resource res{std::pmr::new_delete_resource()};
364-
364+
365365
auto query(get_allocator_t const&) const noexcept {
366366
return std::pmr::polymorphic_allocator<>(this->res);
367367
}
368368
};
369-
```
369+
```
370370
</details>
371371
<details>
372372
<summary><code>forwarding_query(<i>query</i>) -> bool</code></summary>
@@ -437,12 +437,12 @@ This example shows how to define an environment class which provides a <a href=
437437
```
438438
struct alloc_env {
439439
std::pmr::memory_resource res{std::pmr::new_delete_resource()};
440-
440+
441441
auto query(get_allocator_t const&) const noexcept {
442442
return std::pmr::polymorphic_allocator<>(this->res);
443443
}
444444
};
445-
```
445+
```
446446
</details>
447447
</div>
448448
</details>

0 commit comments

Comments
 (0)