Skip to content

Commit c0dcafe

Browse files
committed
fix
1 parent 3bdc3dd commit c0dcafe

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

plugins/postcss-nesting/docs/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ After **without** the option :
105105
}
106106
```
107107

108-
_`.beta:hover` has specificity as if `.beta` where an id selector, matching the specification._
108+
_`.beta:hover` has specificity as if `.beta` were an id selector, matching the specification._
109109

110110
[specificity: 1, 1, 0](https://polypane.app/css-specificity-calculator/#selector=%3Ais(%23alpha%2C.beta)%3Ahover)
111111

@@ -123,7 +123,7 @@ After **with** the option :
123123
}
124124
```
125125

126-
_`.beta:hover` has specificity as if `.beta` where a class selector, conflicting with the specification._
126+
_`.beta:hover` has specificity as if `.beta` were a class selector, conflicting with the specification._
127127

128128
[specificity: 0, 2, 0](https://polypane.app/css-specificity-calculator/#selector=.beta%3Ahover)
129129

@@ -167,8 +167,8 @@ After **with** the option :
167167
```
168168

169169
_this is a different selector than expected as `.beta + .alpha` matches `.beta` followed by `.alpha`._<br>
170-
_avoid these cases when you disable `:is()`_<br>
171-
_writing the selector without nesting is advised here_
170+
_avoid these cases when you disable `:is()`._<br>
171+
_writing the selector without nesting is advised here._
172172

173173
```css
174174
/* without nesting */

0 commit comments

Comments
 (0)