Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix missing semicolon
  • Loading branch information
mzyil authored Dec 5, 2018
commit 5deaa35a451e66315ef7efec2e89a4ea5f64e867
2 changes: 1 addition & 1 deletion src/css/TokenStream.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ TokenStream.prototype = mix(new TokenStreamBase(), {
case "-":
if (reader.peek() === "-") { // could be closing HTML-style comment
reader.mark();
reader.read()
reader.read();
if (isNameStart(reader.peek())) { // could be a custom property
token = this.identOrFunctionToken(c, startLine, startCol-1);
} else {
Expand Down