Skip to content

Commit 49f0797

Browse files
committed
fixup: markup issues
1 parent bf5e1f9 commit 49f0797

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

source/exec.tex

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5063,8 +5063,8 @@
50635063
auto&& [_, data] = std::forward<Sndr>(sndr);
50645064

50655065
using associate_data_t = remove_cvref_t<decltype(data)>;
5066-
using assoc_t = associate_data_t::assoc-t;
5067-
using sender_ref_t = associate_data_t::sender-ref;
5066+
using assoc_t = associate_data_t::@\exposid{assoc-t}@;
5067+
using sender_ref_t = associate_data_t::@\exposid{sender-ref}@;
50685068

50695069
using op_t = connect_result_t<typename sender_ref_t::element_type, Rcvr>;
50705070

@@ -5078,7 +5078,7 @@
50785078
explicit op_state(pair<assoc_t, sender_ref_t> parts, Rcvr& r)
50795079
: assoc(std::move(parts.first)) {
50805080
if (assoc)
5081-
::new (voidify(op)) op_t(connect(std::move(*parts.second), std::move(r)));
5081+
::new (@\placeholdernc{voidify}@(op)) op_t(connect(std::move(*parts.second), std::move(r)));
50825082
else
50835083
rcvr = addressof(r);
50845084
}
@@ -5879,7 +5879,7 @@
58795879

58805880
@\exposid{spawn-state}@(Alloc alloc, Sender&& sndr, Token token); // \expos
58815881
void @\exposid{complete}@() noexcept override; // \expos
5882-
void @\exposid{run}@(); // \expos
5882+
void @\exposid{run}@() noexcept; // \expos
58835883

58845884
private:
58855885
using @\exposid{alloc-t}@ = // \expos
@@ -5918,7 +5918,7 @@
59185918
\effects
59195919
Equivalent to:
59205920
\begin{codeblock}
5921-
if (@\exposid{assoc})
5921+
if (@\exposid{assoc}@)
59225922
start(@\exposid{op}@);
59235923
else
59245924
@\exposid{complete}@();
@@ -7699,7 +7699,7 @@
76997699
\item
77007700
a default constructed object of type \tcode{Assoc} is not engaged;
77017701
\item
7702-
for an object assoc of type \tcode{Assoc},
7702+
for an object \exposid{assoc} of type \tcode{Assoc},
77037703
\tcode{static_cast<bool>(assoc)} is \tcode{true}
77047704
if and only if \tcode{assoc} is engaged;
77057705
\item
@@ -7746,7 +7746,7 @@
77467746
concept @\deflibconcept{scope_token}@ =
77477747
@\libconcept{copyable}@<Token> &&
77487748
requires(const Token token) {
7749-
{ token.try_associate() } -> @\libconcept{scope_association}@<bool>;
7749+
{ token.try_associate() } -> @\libconcept{scope_association}@;
77507750
{ token.wrap(declval<@\placeholder{test-sender}@>()) } -> @\libconcept{sender_in}@<@\placeholder{test-env}@>;
77517751
};
77527752
}
@@ -7884,7 +7884,7 @@
78847884
};
78857885

78867886
template<class Scope>
7887-
@\exposid{struct association-t}@; // \expos
7887+
struct @\exposid{association-t}@; // \expos
78887888
\end{codeblock}
78897889

78907890
\pnum
@@ -7975,11 +7975,11 @@
79757975
\tcode{assoc} is engaged when \tcode{assoc.\exposid{scope} != nullptr} is \tcode{true},
79767976
\item
79777977
if \tcode{assoc} is engaged,
7978-
then \tcode{assoc.try_associate()} is equivalent to
7978+
then \tcode{assoc.\exposid{try_associate}()} is equivalent to
79797979
\tcode{assoc.scope->try-associate()}, and
79807980
\item
79817981
the association owned by \tcode{assoc}
7982-
is released by invoking \tcode{assoc.scope->disassociate()}.
7982+
is released by invoking \tcode{assoc.scope->\exposid{disassociate}()}.
79837983
\end{itemize}
79847984

79857985
\rSec3[exec.scope.simple.counting]{Simple Counting Scope}
@@ -8313,7 +8313,8 @@
83138313
\pnum
83148314
\effects
83158315
If \exposid{count} is equal to \tcode{max_associations},
8316-
then no effects. Otherwise, if \exposid{state} is
8316+
then no effects.
8317+
Otherwise, if \exposid{state} is
83178318
\begin{itemize}
83188319
\item
83198320
\exposid{unused}, then increments \exposid{count} and

0 commit comments

Comments
 (0)