From b99246ffef1edcd339497058730d5ac00aa1b6b9 Mon Sep 17 00:00:00 2001 From: Simon Stranks Date: Fri, 3 Nov 2023 00:32:10 +0000 Subject: [PATCH] fix(): comment formatting --- src/services/selectorPrinting.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/selectorPrinting.ts b/src/services/selectorPrinting.ts index 11c7aaf2..4d6e5e17 100644 --- a/src/services/selectorPrinting.ts +++ b/src/services/selectorPrinting.ts @@ -470,7 +470,7 @@ export class SelectorPrinting { } if (text.match(/^:(?:nth-child|nth-last-child)/i) && childElements.length > 0) { - // The specificity of the :nth-child(An+B [of S]?) pseudo-class is the specificity of a single pseudo-class plus, if S is specified, the specificity of the most specific complex selector in S + /* The specificity of the :nth-child(An+B [of S]?) pseudo-class is the specificity of a single pseudo-class plus, if S is specified, the specificity of the most specific complex selector in S */ // https://www.w3.org/TR/selectors-4/#the-nth-child-pseudo specificity.attr++;