From e0896335cc51b869bc9c7f768aeb0dc0281a9f1f Mon Sep 17 00:00:00 2001 From: sideshowbarker Date: Fri, 8 Nov 2024 11:37:31 +0900 Subject: [PATCH] Fix language stating when start tags must not be omitted MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- source | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source b/source index 0d9624488bd..b53f0575fda 100644 --- a/source +++ b/source @@ -123497,8 +123497,9 @@ dictionary StorageEventInit : EventInit { -

However, a start tag must never be - omitted if it has any attributes.

+

However, an element’s start tag must never be omitted if the element has any attributes.