Skip to content

Commit 41c66fc

Browse files
committed
Fix spacing in SelectorSubPart.js
1 parent 6017015 commit 41c66fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/css/SelectorSubPart.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
* @class SelectorSubPart
77
* @extends parserlib.util.SyntaxUnit
88
* @constructor
9-
* @param {String} text The text representation of the unit.
9+
* @param {String} text The text representation of the unit.
1010
* @param {String} type The type of selector modifier.
1111
* @param {int} line The line of text on which the unit resides.
1212
* @param {int} col The column of text on which the unit resides.
1313
*/
1414
function SelectorSubPart(text, type, line, col){
15-
15+
1616
SyntaxUnit.call(this, text, line, col, Parser.SELECTOR_SUB_PART_TYPE);
1717

1818
/**
@@ -21,7 +21,7 @@ function SelectorSubPart(text, type, line, col){
2121
* @property type
2222
*/
2323
this.type = type;
24-
24+
2525
/**
2626
* Some subparts have arguments, this represents them.
2727
* @type Array

0 commit comments

Comments
 (0)