Skip to content

Commit 2b5652e

Browse files
committed
wip
1 parent 18796ae commit 2b5652e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/browser/css/parser.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ pub const Parser = struct {
204204
}
205205

206206
const c = p.s[p.i];
207-
if (!nameStart(c) and c != '\\') {
207+
if (!(nameStart(c) or c == '\\')) {
208208
return ParseError.ExpectedSelector;
209209
}
210210

0 commit comments

Comments
 (0)