Skip to content

Commit

Permalink
Fixed closing bracket for language pseudo class
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasWeinert committed Jun 13, 2014
1 parent d54597d commit 3b65bbf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/PhpCss/Ast/Visitor/Explain.php
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,9 @@ public function visitSelectorSimplePseudoClassLanguage(
$this->appendText('(');
$this->start($this->appendElement('parameter'));
$this->appendText($language->language);
$this->end();
$this->appendText(')');
return $this->end();
return TRUE;
}

/**
Expand Down

0 comments on commit 3b65bbf

Please sign in to comment.