From c7abe75b885124cc573d0a4f1fadcec46b8a43de Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Fri, 28 Jun 2024 10:59:12 -0700 Subject: [PATCH 1/4] 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 04215ba5ee88ab01a2283d476ac2755febde4d5c Mon Sep 17 00:00:00 2001 From: Lewis Baker Date: Thu, 4 Jul 2024 13:21:48 +0930 Subject: [PATCH 2/4] Fix typo in example: as_writeable_bytes -> as_writable_bytes Fixes #217 --- execution.bs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/execution.bs b/execution.bs index 6c8f298..ff4cc0b 100644 --- a/execution.bs +++ b/execution.bs @@ -389,7 +389,7 @@ struct dynamic_buffer { // sender_of auto async_read_array(auto handle) { // 2 return just(dynamic_buffer{}) // 4 | let_value([handle] (dynamic_buffer& buf) { // 5 - return just(std::as_writeable_bytes(std::span(&buf.size, 1))) // 6 + return just(std::as_writable_bytes(std::span(&buf.size, 1))) // 6 | async_read(handle) // 7 | then( // 8 [&buf] (std::size_t bytes_read) { // 9 From 12fde4af201017e49efd39178126f661a04dbb94 Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Sun, 7 Jul 2024 13:28:06 -0700 Subject: [PATCH 3/4] 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 4/4] 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