Fix parse error

This commit is contained in:
Robin Voetter
2021-03-30 12:53:32 +02:00
parent bb21cf6892
commit 938359c6c9

View File

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