Skip to content

Commit 9f894d7

Browse files
committed
fixed typo
1 parent 9d2e974 commit 9f894d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/CSSValue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function isColorComponent() {
4545
*/
4646
public function isSize() {
4747
$aNonSizeUnits = array('deg', 'grad', 'rad', 'turns', 's', 'ms', 'Hz', 'kHz');
48-
if(in_array($this->sUnit), $aNonSizeUnits) {
48+
if(in_array($this->sUnit, $aNonSizeUnits)) {
4949
return false;
5050
}
5151
return !$this->isColorComponent();

0 commit comments

Comments
 (0)