Skip to content

Commit 1e55411

Browse files
committed
Remove extra semicolon
1 parent 0b2fde0 commit 1e55411

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Validate/Context.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ protected function setAncestorTagNames()
244244
$ancestor_tag_names = [];
245245
$tag = $this->dom_tag;
246246
while (($tag = $tag->parentNode) && !empty($tag->tagName)) {
247-
$ancestor_tag_names[] = mb_strtolower($tag->tagName, 'UTF-8');;
247+
$ancestor_tag_names[] = mb_strtolower($tag->tagName, 'UTF-8');
248248
}
249249
$ancestor_tag_names[] = '!doctype';
250250
$this->ancestor_tag_names = $ancestor_tag_names;

0 commit comments

Comments
 (0)