Skip to content

Commit

Permalink
escape semantically meaningful braces in [exec.getcomplsigs]
Browse files Browse the repository at this point in the history
[P2300R10 [exec.getcomplsigs]](https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2024/p2300r10.html#spec-execution.getcomplsigs) para 1 contains the following in code font:

```
transform_sender(decltype(get-domain-late(sndr, env)){}, sndr, env)
```

In the current working draft, this is rendered as:

```
transform_sender(decltype(get-domain-late(sndr, env)), sndr, env)
```

Note the missing braces. This is an editing mistake where the braces are not escaped for LaTeX, and hence are ignored.
  • Loading branch information
ericniebler authored Jan 3, 2025
1 parent f417d50 commit 3b42d49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/exec.tex
Original file line number Diff line number Diff line change
Expand Up @@ -2373,7 +2373,7 @@
let \tcode{env} be an expression
such that \tcode{decltype((env))} is \tcode{Env}.
Let \tcode{new_sndr} be the expression
\tcode{transform_sender(decltype(\exposid{get-domain-late}(sndr, env)){}, sndr, env)}, and
\tcode{transform_sender(decltype(\exposid{get-domain-late}(sndr, env))\{\}, sndr, env)}, and
let \tcode{NewSndr} be \tcode{decltype((new_sndr))}.
Then \tcode{get_completion_signatures(sndr, env)} is expression-equivalent to
\tcode{(void(sndr), void(env), CS())}
Expand Down

0 comments on commit 3b42d49

Please sign in to comment.