Skip to content

Commit dceb6b2

Browse files
committed
fixup: suggestions from review
1 parent cf79bb1 commit dceb6b2

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

source/exceptions.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1126,7 +1126,7 @@
11261126
when \tcode{unhandled_stopped} is called on
11271127
a \tcode{with_awaitable_senders<T>} object\iref{exec.with.awaitable.senders}
11281128
whose continuation is not a handle to a coroutine
1129-
whose promise type has an \tcode{unhandled_stopped} member function.
1129+
whose promise type has an \tcode{unhandled_stopped} member function, or
11301130

11311131
\item%
11321132
when \tcode{std::execution::get_parallel_scheduler} is called and

source/exec.tex

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5705,13 +5705,13 @@
57055705
\pnum
57065706
Let \tcode{sch2} be an object of type \tcode{parallel_scheduler}.
57075707
Two objects \tcode{sch} and \tcode{sch2} compare equal if and only if
5708-
\tcode{\exposid{BACKEND-OF(sch)}} and
5709-
\tcode{\exposid{BACKEND-OF(sch2)}} refer to the same object.
5708+
\tcode{\exposid{BACKEND-OF}(sch)} and
5709+
\tcode{\exposid{BACKEND-OF}(sch2)} refer to the same object.
57105710

57115711
\pnum
57125712
Let \tcode{rcvr} be a receiver.
57135713
A \defn{proxy} for \tcode{rcvr} with base \tcode{B} is
5714-
an lvalue \tcode{r} of type \tcode{B} such that
5714+
an lvalue \tcode{r} of type \tcode{B} such that:
57155715
\begin{itemize}
57165716
\item
57175717
\tcode{r.set_value()} has effects equivalent to
@@ -5797,12 +5797,12 @@
57975797
\end{itemize}
57985798
\begin{note}
57995799
Customizing the behavior of \tcode{bulk_chunked}
5800-
affects the default implementation of bulk.
5800+
affects the default implementation of \tcode{bulk}.
58015801
\end{note}
58025802

58035803
\pnum
58045804
\tcode{parallel_scheduler} provides a customized implementation of
5805-
the bulk_unchunked algorithm\iref{exec.bulk}.
5805+
the \tcode{bulk_unchunked} algorithm\iref{exec.bulk}.
58065806
If a receiver \tcode{rcvr} is connected to the sender
58075807
returned by \tcode{bulk_unchunked(sndr, pol, shape, f)} and
58085808
the resulting operation state is started, then:
@@ -5843,12 +5843,12 @@
58435843

58445844
\pnum
58455845
Facilities in the \tcode{system_context_replaceability} namespace
5846-
allow users to replace the default implementation of parallel scheduler.
5846+
allow users to replace the default implementation of \tcode{parallel_scheduler}.
58475847

58485848
\rSec2[exec.sysctxrepl.query]{\tcode{query_parallel_scheduler_backend}}
5849-
5849+
\indexlibraryglobal{query_parallel_scheduler_backend}%
58505850
\begin{itemdecl}
5851-
shared_ptr<parallel_scheduler_backend> query_parallel_scheduler_backend();
5851+
shared_ptr<parallel_scheduler_backend> query_parallel_scheduler_backend();
58525852
\end{itemdecl}
58535853

58545854
\begin{itemdescr}
@@ -5941,7 +5941,7 @@
59415941

59425942
\begin{codeblock}
59435943
namespace std::execution::system_context_replaceability {
5944-
struct parallel_scheduler_backend {
5944+
struct @\libglobal{parallel_scheduler_backend}@ {
59455945
virtual ~parallel_scheduler_backend() = default;
59465946

59475947
virtual void schedule(receiver_proxy&, span<byte>) noexcept = 0;
@@ -6106,5 +6106,6 @@
61066106

61076107
\pnum
61086108
\remarks
6109-
The storage referenced by s may be used by *this as temporary storage for the duration of the operation launched by this call.
6109+
The storage referenced by \tcode{s} may be used by \tcode{*this}
6110+
as temporary storage for the duration of the operation launched by this call.
61106111
\end{itemdescr}

0 commit comments

Comments
 (0)