fix typo in @extend spec (#3484)

This commit is contained in:
Connor Skees 2023-01-30 17:15:30 -05:00 committed by GitHub
parent ded4033f49
commit 6a21d2e470
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,