@@ -173,7 +173,7 @@ test('select.matches()', function(t) {
173173 st . end ( )
174174 } )
175175
176- t . test ( 'attributes, existance : `[attr]`' , function ( st ) {
176+ t . test ( 'attributes, existence : `[attr]`' , function ( st ) {
177177 st . ok ( matches ( '[class]' , h ( '.one' ) ) , 'true if attribute exists' )
178178 st . notOk ( matches ( '[for]' , h ( '.one' ) ) , 'false if attribute does not exist' )
179179 st . ok (
@@ -704,7 +704,7 @@ test('select.matches()', function(t) {
704704 )
705705 sst . ok (
706706 matches ( pseudo + '(a, [title], .class)' , h ( 'div' , { title : '1' } ) ) ,
707- 'true if any matches (attribute existance )'
707+ 'true if any matches (attribute existence )'
708708 )
709709 sst . notOk (
710710 matches ( pseudo + '(a, [title], .class)' , h ( 'i' ) ) ,
@@ -726,7 +726,7 @@ test('select.matches()', function(t) {
726726 )
727727 sst . notOk (
728728 matches ( ':not(a, [title], .class)' , h ( 'div' , { title : '1' } ) ) ,
729- 'false if any matches (attribute existance )'
729+ 'false if any matches (attribute existence )'
730730 )
731731 sst . ok (
732732 matches ( ':not(a, [title], .class)' , h ( 'i' ) ) ,
0 commit comments