From f15dcfff702c203ead0ae861838dd398a09fa309 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source b/source index 0d9624488bd..f53253aa83d 100644 --- a/source +++ b/source @@ -123498,7 +123498,7 @@ dictionary StorageEventInit : EventInit {

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

+ omitted if its element has any attributes.