@@ -269,7 +269,7 @@ public function testIsMathMLElement()
269269 foreach ($ this ->mathmlElements as $ element ) {
270270 $ this ->assertTrue (Elements::isMathMLElement ($ element ), 'MathML element test failed on: ' . $ element );
271271
272- // MathML is case sensetitive so these should all fail.
272+ // MathML is case sensitive so these should all fail.
273273 $ this ->assertFalse (Elements::isMathMLElement (strtoupper ($ element )), 'MathML element test failed on: ' . strtoupper ($ element ));
274274 }
275275
@@ -288,7 +288,7 @@ public function testIsSvgElement()
288288 foreach ($ this ->svgElements as $ element ) {
289289 $ this ->assertTrue (Elements::isSvgElement ($ element ), 'SVG element test failed on: ' . $ element );
290290
291- // SVG is case sensetitive so these should all fail.
291+ // SVG is case sensitive so these should all fail.
292292 $ this ->assertFalse (Elements::isSvgElement (strtoupper ($ element )), 'SVG element test failed on: ' . strtoupper ($ element ));
293293 }
294294
@@ -313,15 +313,15 @@ public function testIsElement()
313313 foreach ($ this ->mathmlElements as $ element ) {
314314 $ this ->assertTrue (Elements::isElement ($ element ), 'MathML element test failed on: ' . $ element );
315315
316- // MathML is case sensetitive so these should all fail.
316+ // MathML is case sensitive so these should all fail.
317317 $ this ->assertFalse (Elements::isElement (strtoupper ($ element )), 'MathML element test failed on: ' . strtoupper ($ element ));
318318 }
319319
320320 foreach ($ this ->svgElements as $ element ) {
321321 $ this ->assertTrue (Elements::isElement ($ element ), 'SVG element test failed on: ' . $ element );
322322
323- // SVG is case sensetitive so these should all fail. But, there is duplication
324- // html5 and SVG. Since html5 is case insensetitive we need to make sure
323+ // SVG is case sensitive so these should all fail. But, there is duplication
324+ // html5 and SVG. Since html5 is case insensitive we need to make sure
325325 // it's not a html5 element first.
326326 if (! in_array ($ element , $ this ->html5Elements )) {
327327 $ this ->assertFalse (Elements::isElement (strtoupper ($ element )), 'SVG element test failed on: ' . strtoupper ($ element ));
0 commit comments