@@ -31,6 +31,10 @@ meet its objective at run-time.
3131
3232# Change History
3333
34+ ## R2
35+
36+ - fixed typo in the wording for ` affine_on::transform_sender `
37+
3438## R1
3539
3640- added wording
@@ -548,13 +552,13 @@ Let `sndr` and `ev` be subexpressions such that `Sndr` is
548552` decltype((sndr)) ` . If <code ><i >sender-for</i >< ; Sndr,
549553affine_on_t> ; </code > is ` false ` , then the expression
550554` affine_on.transform_sender(sndr, ev) ` is ill-formed; otherwise,
551- if otherwise, it is equal to:
555+ it is equal to:
552556
553557```
554558auto&[_, _, child] = sndr;
555559using child_tag_t = tag_of_t<remove_cvref_t<decltype(child)>>;
556- if constexpr (requires(const child_tag_t& t){ t.affine_on(child, env ); })
557- return t.affine_on(child, env );
560+ if constexpr (requires(const child_tag_t& t){ t.affine_on(child, ev ); })
561+ return t.affine_on(child, ev );
558562else
559563 return write_env(
560564 schedule_from(get_scheduler(get_env(ev)), write_env(std::move(child), ev)),
@@ -781,7 +785,7 @@ then ]{.add} <code>completion_signatures_of_t<<i>run-loop-sender</i>[, E]{.ad
781785
782786::: rm
783787```
784- completion_signatures<set_value_t(), set_error_t(exception_ptr), set_stopped_t()>`
788+ completion_signatures<set_value_t(), set_error_t(exception_ptr), set_stopped_t()>
785789```
786790:::
787791
0 commit comments