Skip to content

Commit

Permalink
add missing italics around exposition-only identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
ericniebler committed Mar 14, 2024
1 parent 2829456 commit 3565321
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions execution.bs
Original file line number Diff line number Diff line change
Expand Up @@ -5880,9 +5880,10 @@ template<class Domain, class Tag, sender Sndr, class... Args>
<pre highlight="c++">
template&lt;>
struct <i>impls-for</i>&lt;tag_t&lt;read>> : <i>default-impls</i> {
static constexpr auto start = [](auto query, auto& rcvr) noexcept -> void {
<i>TRY-SET-VALUE</i>(std::move(rcvr), query(get_env(rcvr)));
};
static constexpr auto <em>start</em> =
[](auto query, auto& rcvr) noexcept -> void {
<i>TRY-SET-VALUE</i>(std::move(rcvr), query(get_env(rcvr)));
};
};
</pre>

Expand Down Expand Up @@ -6130,7 +6131,6 @@ template&lt;class Domain, class Tag, sender Sndr, class... Args>
<i>make-sender</i>(schedule_from, sch, sndr));
</pre>


4. The exposition-only class template <code><i>impls-for</i></code>
([exec.snd.general]) is specialized for `schedule_from_t` as
follows:
Expand Down

0 comments on commit 3565321

Please sign in to comment.