Skip to content

Commit 3874347

Browse files
committed
Fix typo
1 parent 74ca262 commit 3874347

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/XPath/TranslatorTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ public static function getHtmlIdsTestData()
277277
['div[foobar~="cd"]', []],
278278
['*[lang|="En"]', ['second-li']],
279279
['[lang|="En-us"]', ['second-li']],
280-
// Attribute values are case sensitive
280+
// Attribute values are case-sensitive
281281
['*[lang|="en"]', []],
282282
['[lang|="en-US"]', []],
283283
['*[lang|="e"]', []],
@@ -334,7 +334,7 @@ public static function getHtmlIdsTestData()
334334
['* :root', []],
335335
['*:contains("link")', ['html', 'nil', 'outer-div', 'tag-anchor', 'nofollow-anchor']],
336336
[':CONtains("link")', ['html', 'nil', 'outer-div', 'tag-anchor', 'nofollow-anchor']],
337-
['*:contains("LInk")', []], // case sensitive
337+
['*:contains("LInk")', []], // case-sensitive
338338
['*:contains("e")', ['html', 'nil', 'outer-div', 'first-ol', 'first-li', 'paragraph', 'p-em']],
339339
['*:contains("E")', []], // case-sensitive
340340
['.a', ['first-ol']],

0 commit comments

Comments
 (0)