Skip to content

Commit 6017015

Browse files
committed
Fix spacing in SelectorPart.js
1 parent 69df023 commit 6017015

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/css/SelectorPart.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
* if there is no element name.
1212
* @param {Array} modifiers Array of individual modifiers for the element.
1313
* May be empty if there are none.
14-
* @param {String} text The text representation of the unit.
14+
* @param {String} text The text representation of the unit.
1515
* @param {int} line The line of text on which the unit resides.
1616
* @param {int} col The column of text on which the unit resides.
1717
*/
1818
function SelectorPart(elementName, modifiers, text, line, col){
19-
19+
2020
SyntaxUnit.call(this, text, line, col, Parser.SELECTOR_PART_TYPE);
2121

2222
/**
@@ -26,7 +26,7 @@ function SelectorPart(elementName, modifiers, text, line, col){
2626
* @property elementName
2727
*/
2828
this.elementName = elementName;
29-
29+
3030
/**
3131
* The parts that come after the element name, such as class names, IDs,
3232
* pseudo classes/elements, etc.

0 commit comments

Comments
 (0)