Skip to content

Commit 69df023

Browse files
committed
Fix spacing in Selector.js
1 parent 9dba755 commit 69df023

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/css/Selector.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
* @param {int} col The column of text on which the unit resides.
1212
*/
1313
function Selector(parts, line, col){
14-
14+
1515
SyntaxUnit.call(this, parts.join(" "), line, col, Parser.SELECTOR_TYPE);
16-
16+
1717
/**
1818
* The parts that make up the selector.
1919
* @type Array
2020
* @property parts
2121
*/
2222
this.parts = parts;
23-
23+
2424
/**
2525
* The specificity of the selector.
2626
* @type parserlib.css.Specificity

0 commit comments

Comments
 (0)