Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tabatkins committed May 23, 2023
1 parent 28735b0 commit fa83eb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parse-css.js
Original file line number Diff line number Diff line change
Expand Up @@ -1358,7 +1358,7 @@ class QualifiedRule extends CSSParserRule {
let s = printIndent(indent);
s += this.prelude.map(x=>x.toSource()).join("");
s += "{\n";
if(this.declarations.length;) {
if(this.declarations.length) {
s += this.declarations.map(x=>x.toSource(indent+1)).join("\n") + "\n";
}
if(this.rules.length) {
Expand Down

0 comments on commit fa83eb1

Please sign in to comment.