From 3565321b4b42d3a10c229610da22d446b254607c Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Wed, 13 Mar 2024 17:33:25 -0700 Subject: [PATCH] add missing italics around exposition-only identifier --- execution.bs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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: