Fix parse error

This commit is contained in:
Robin Voetter
2021-03-30 12:53:32 +02:00
parent 9321da3426
commit 954ca65ed9

View File

@@ -391,7 +391,7 @@ fn tryParseCharData(ctx: *ParseContext, alloc: *Allocator) !?[]const u8 {
while (ctx.peek()) |ch| { while (ctx.peek()) |ch| {
switch (ch) { switch (ch) {
'<', '>' => break, '<' => break,
else => _ = ctx.consumeNoEof() else => _ = ctx.consumeNoEof()
} }
} }