Skip to content

Commit e089633

Browse files
Fix language stating when start tags must not be omitted
This change corrects the following statement: > However, a start tag must never be omitted if it has any attributes. The correction in this change makes it clear that the requirement is about whether the start tag’s _element_ has attributes — not about whether the start tag itself does. Otherwise, without this change, the problem with the text as written is the word “it”, which incorrectly refers to the start tag itself.
1 parent 0511ae0 commit e089633

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

source

+3-2
Original file line numberDiff line numberDiff line change
@@ -123497,8 +123497,9 @@ dictionary <dfn dictionary>StorageEventInit</dfn> : <span>EventInit</span> {
123497123497

123498123498
</div>
123499123499

123500-
<p><strong>However</strong>, a <span data-x="syntax-start-tag">start tag</span> must never be
123501-
omitted if it has any attributes.</p>
123500+
<p><strong>However</strong>, an <span data-x="concept-element">element’s</span> <span
123501+
data-x="syntax-start-tag">start tag</span> must never be omitted if the <span
123502+
data-x="concept-element">element</span> has any attributes.</p>
123502123503

123503123504
<div class="example">
123504123505

0 commit comments

Comments
 (0)