aboutsummaryrefslogtreecommitdiff
path: root/src/parser.zig
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2026-04-25 18:56:04 +0200
committerAnhgelus Morhtuuzh <william@herges.fr>2026-04-25 18:56:04 +0200
commit7ca5ad5927386703219072723eb41c511e1c5359 (patch)
treedae4f9495367452fb0fe58ae280c0bdb4fce3e49 /src/parser.zig
parent7ce1e3fdeb407b4485e44da811086a388e6a17b3 (diff)
fix(lexer): invalid kind for requires delimiter in specific conds
Diffstat (limited to 'src/parser.zig')
-rw-r--r--src/parser.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.zig b/src/parser.zig
index b2c0f95..cac395e 100644
--- a/src/parser.zig
+++ b/src/parser.zig
@@ -99,7 +99,7 @@ test "multiple render doc" {
defer arena.deinit();
const alloc = arena.allocator();
- const g = try parse(alloc, "hello *world*");
+ const g = try parse(alloc, "hello *world*!");
const a = try g.renderHTML(alloc);
const b = try g.renderHTML(alloc);
try std.testing.expect(std.mem.eql(u8, a, b));