From 6a21d2e470f1e3416dd4a91cb681bd5e972571ff Mon Sep 17 00:00:00 2001 From: Connor Skees <39542938+connorskees@users.noreply.github.com> Date: Mon, 30 Jan 2023 17:15:30 -0500 Subject: [PATCH] fix typo in `@extend` spec (#3484) --- spec/at-rules/extend.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/at-rules/extend.md b/spec/at-rules/extend.md index 4be6800d..128c6d7d 100644 --- a/spec/at-rules/extend.md +++ b/spec/at-rules/extend.md @@ -431,7 +431,7 @@ two guarantees about the result. These are known as the "laws of extend". The first law of `@extend` says that the specificity of the first generated selector must be greater than or equal to that of the original extendee. For -example, `extend(a.foo, .foo, .a)` should generate `a.foo, a` even though +example, `extend(a.foo, .foo, a)` should generate `a.foo, a` even though `a.foo` matches a subset of elements matched by `a`. In most cases, the first generated selector will be identical to the extendee,