Skip to content

Commit 96185ce

Browse files
committed
Fix validation errors for unescaped entities in 4198
1 parent 88cafc7 commit 96185ce

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

xml/issue4198.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -62,28 +62,28 @@ we also need to change how we specify the variant type of `state.async-result`:
6262
<blockquote>
6363
Let `Sigs` be a pack of the arguments to the `completion_signatures`
6464
specialization named by
65-
`completion_signatures_of_t<child-type<Sndr>, env_of_t<Rcvr>>`.
65+
<code>completion_signatures_of_t&lt;<i>child-type</i>&lt;Sndr&gt;, env_of_t&lt;Rcvr&gt;&gt;</code>.
6666
Let <i><code>as-tuple</code></i> be an alias template
6767
<del>
6868
that transforms a completion signature `Tag(Args...)` into
69-
the tuple specialization `decayed-tuple<Tag, Args...>`.
69+
the tuple specialization <code><i>decayed-tuple</i>&lt;Tag, Args...&gt;</code>.
7070
</del>
7171
<ins>
72-
such that `as-tuple<Tag(Args...)>` denotes
73-
the tuple specialization `decayed-tuple<Tag, Args...>`,
74-
and let is-nothrow-decay-copy-sig be
75-
a variable template such that
76-
<code>is-nothrow-decay-copy-sig&lt;Tag(Args...)&gt;</code>
72+
such that <code><i>as-tuple</i>&lt;Tag(Args...)&gt;</code> denotes
73+
the tuple specialization <code><i>decayed-tuple</i>&lt;Tag, Args...&gt;</code>,
74+
and let <code><i>is-nothrow-decay-copy-sig</i></code>
75+
be a variable template such that
76+
<code><i>is-nothrow-decay-copy-sig</i>&lt;Tag(Args...)&gt;</code>
7777
is a core constant expression of type `bool const` and whose value
7878
is `true` if the types `Args...` are all nothrow decay-copyable, and `false`
7979
otherwise.
8080
Let <i><code>error-completion</code></i> be a pack consisting of the type
8181
`set_error_t(exception_ptr)` if
82-
<code>(is-nothrow-decay-copy-sig&lt;Sigs&gt; &amp;&amp;...)</code>
82+
<code>(<i>is-nothrow-decay-copy-sig</i>&lt;Sigs&gt; &amp;&amp;...)</code>
8383
is `false`, and an empty pack otherwise.
8484
</ins>
8585
Then `variant_t` denotes the type
86-
<code>variant&lt;monostate, as-tuple&lt;Sigs&gt;...<ins>, <i>error-completion</i>...</ins>&gt;</code>,
86+
<code>variant&lt;monostate, <i>as-tuple</i>&lt;Sigs&gt;...<ins>, <i>error-completion</i>...</ins>&gt;</code>,
8787
except with duplicate types removed.
8888
</blockquote>
8989

0 commit comments

Comments
 (0)