From c7abe75b885124cc573d0a4f1fadcec46b8a43de Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Fri, 28 Jun 2024 10:59:12 -0700 Subject: [PATCH 1/3] do not make term definitions (`dfn`) bold --- execution.bs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/execution.bs b/execution.bs index 6c8f298..9fe758e 100644 --- a/execution.bs +++ b/execution.bs @@ -167,6 +167,10 @@ div.hidden h6 { margin-block: 0; line-height: 0; } + +dfn { + font-weight: normal; +} # Introduction # {#intro} From 12fde4af201017e49efd39178126f661a04dbb94 Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Sun, 7 Jul 2024 13:28:06 -0700 Subject: [PATCH 2/3] fix HTML escape issue --- execution.bs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/execution.bs b/execution.bs index 136d26a..6440161 100644 --- a/execution.bs +++ b/execution.bs @@ -1,9 +1,9 @@ @@ -9919,7 +9919,7 @@ void finish(); 2.
     template<class OtherPromise>
       requires (!same_as<OtherPromise, void>)
-    void set_continuation(coroutine_handle h) noexcept;
+    void set_continuation(coroutine_handle<OtherPromise> h) noexcept;
     
1. Effects: Equivalent to: From a1790ddda5dcdf70f0658d0b50794649caa6c96f Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Tue, 9 Jul 2024 15:30:11 -0700 Subject: [PATCH 3/3] fix revision number to be purely numeric --- execution.bs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/execution.bs b/execution.bs index 6440161..8ce69d2 100644 --- a/execution.bs +++ b/execution.bs @@ -2,7 +2,7 @@ Title: `std::execution` H1: std::execution Shortname: D2300 -Revision: 10.a +Revision: 11 Status: D Group: WG21 Date: 2024-06-28