Skip to content

Commit 9a486a0

Browse files
committed
add another newline between rules
1 parent 1746ad3 commit 9a486a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/compiler.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ module.exports = function(node){
7676
for (var i=0; i < node[1].length; ++i) {
7777
buf.push(visit(node[1][i]));
7878
}
79-
return buf.join('\n');
79+
return buf.join('\n\n');
8080
}
8181

8282
/**

0 commit comments

Comments
 (0)