diff --git a/source/exec.tex b/source/exec.tex index a26e23fc4c..1949838d7b 100644 --- a/source/exec.tex +++ b/source/exec.tex @@ -4459,11 +4459,11 @@ auto&& [_, _, child] = sndr; using V = @\exposid{single-sender-value-type}@; return let_stopped( - then(std::forward_like(child), - [](Ts&&... ts) noexcept(is_nothrow_constructible_v) { - return optional(in_place, std::forward(ts)...); - }), - []() noexcept { return just(optional()); }); + then(std::forward_like(child), + [](Ts&&... ts) noexcept(is_nothrow_constructible_v) { + return optional(in_place, std::forward(ts)...); + }), + []() noexcept { return just(optional()); }); \end{codeblock} \rSec3[exec.stopped.err]{\tcode{execution::stopped_as_error}} @@ -4501,10 +4501,10 @@ auto&& [_, err, child] = sndr; using E = decltype(auto(err)); return let_stopped( - std::forward_like(child), - [err = std::forward_like(err)]() mutable noexcept(is_nothrow_move_constructible_v) { - return just_error(std::move(err)); - }); + std::forward_like(child), + [err = std::forward_like(err)]() mutable noexcept(is_nothrow_move_constructible_v) { + return just_error(std::move(err)); + }); \end{codeblock} \rSec2[exec.consumers]{Sender consumers}