diff --git a/execution.bs b/execution.bs index 96d2134..3842a7e 100644 --- a/execution.bs +++ b/execution.bs @@ -5880,9 +5880,10 @@ template<class Domain, class Tag, sender Sndr, class... Args>
template<> struct impls-for<tag_t<read>> : default-impls { - static constexpr auto start = [](auto query, auto& rcvr) noexcept -> void { - TRY-SET-VALUE(std::move(rcvr), query(get_env(rcvr))); - }; + static constexpr auto start = + [](auto query, auto& rcvr) noexcept -> void { + TRY-SET-VALUE(std::move(rcvr), query(get_env(rcvr))); + }; };@@ -6130,7 +6131,6 @@ template<class Domain, class Tag, sender Sndr, class... Args> make-sender(schedule_from, sch, sndr)); - 4. The exposition-only class template
impls-for
([exec.snd.general]) is specialized for `schedule_from_t` as
follows: