@@ -173,7 +173,7 @@ test('select.matches()', function(t) {
173
173
st . end ( )
174
174
} )
175
175
176
- t . test ( 'attributes, existance : `[attr]`' , function ( st ) {
176
+ t . test ( 'attributes, existence : `[attr]`' , function ( st ) {
177
177
st . ok ( matches ( '[class]' , h ( '.one' ) ) , 'true if attribute exists' )
178
178
st . notOk ( matches ( '[for]' , h ( '.one' ) ) , 'false if attribute does not exist' )
179
179
st . ok (
@@ -704,7 +704,7 @@ test('select.matches()', function(t) {
704
704
)
705
705
sst . ok (
706
706
matches ( pseudo + '(a, [title], .class)' , h ( 'div' , { title : '1' } ) ) ,
707
- 'true if any matches (attribute existance )'
707
+ 'true if any matches (attribute existence )'
708
708
)
709
709
sst . notOk (
710
710
matches ( pseudo + '(a, [title], .class)' , h ( 'i' ) ) ,
@@ -726,7 +726,7 @@ test('select.matches()', function(t) {
726
726
)
727
727
sst . notOk (
728
728
matches ( ':not(a, [title], .class)' , h ( 'div' , { title : '1' } ) ) ,
729
- 'false if any matches (attribute existance )'
729
+ 'false if any matches (attribute existence )'
730
730
)
731
731
sst . ok (
732
732
matches ( ':not(a, [title], .class)' , h ( 'i' ) ) ,
0 commit comments