Skip to content

Commit

Permalink
Remove extra semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
sidkshatriya committed Jul 5, 2016
1 parent 0b2fde0 commit 1e55411
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Validate/Context.php
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ protected function setAncestorTagNames()
$ancestor_tag_names = [];
$tag = $this->dom_tag;
while (($tag = $tag->parentNode) && !empty($tag->tagName)) {
$ancestor_tag_names[] = mb_strtolower($tag->tagName, 'UTF-8');;
$ancestor_tag_names[] = mb_strtolower($tag->tagName, 'UTF-8');
}
$ancestor_tag_names[] = '!doctype';
$this->ancestor_tag_names = $ancestor_tag_names;
Expand Down

0 comments on commit 1e55411

Please sign in to comment.