Skip to content

Commit 9825dca

Browse files
committed
Fix code format
1 parent 55789c8 commit 9825dca

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

lib/parser.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,10 @@ class Parser {
132132
if (founded === 2) break
133133
}
134134
}
135-
// If the token is a word, e.g. `!important`, `red` or any other valid property's value.
136-
// Then we need to return the colon after that word token. [3] is the "end" colon of that word.
137-
// And because we need it after that one we do +1 to get the next one.
135+
// If the token is a word, e.g. `!important`, `red` or any other valid
136+
// property's value. Then we need to return the colon after that word
137+
// token. [3] is the "end" colon of that word. And because we need it
138+
// after that one we do +1 to get the next one.
138139
throw this.input.error(
139140
'Missed semicolon',
140141
token[0] === 'word' ? token[3] + 1 : token[2]

0 commit comments

Comments
 (0)