From 91ab33a40bf2dfd75286a01785453705105533e8 Mon Sep 17 00:00:00 2001 From: Tom Raviv Date: Tue, 12 Jul 2022 09:06:29 +0300 Subject: [PATCH] fix(css): correct two syntax examples in selectors (#589) `:playing` and `::-ms-expand` we syntax examples from other selector examples. --- css/selectors.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css/selectors.json b/css/selectors.json index d3ce43df..e4486fe2 100644 --- a/css/selectors.json +++ b/css/selectors.json @@ -541,7 +541,7 @@ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/:placeholder-shown" }, ":playing": { - "syntax": ":checked", + "syntax": ":playing", "groups": [ "Pseudo-classes", "Selectors" @@ -748,7 +748,7 @@ "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/::-ms-clear" }, "::-ms-expand": { - "syntax": "::-ms-clear", + "syntax": "::-ms-expand", "groups": [ "Pseudo-elements", "Selectors",