diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2026-04-30 19:20:16 +0200 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2026-04-30 19:20:16 +0200 |
| commit | a9e8d0e9c929bec830b086e473ef1362e1f873d9 (patch) | |
| tree | 9ff2e2c2f49f5ca918c976dde000e0ee61a7b8bf /src/testing.zig | |
| parent | a36f5482ad90d6899d56e016666a2ca09240abd6 (diff) | |
refactor(typst): generalize template
Diffstat (limited to 'src/testing.zig')
| -rw-r--r-- | src/testing.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testing.zig b/src/testing.zig index 143d6ca..5bab88b 100644 --- a/src/testing.zig +++ b/src/testing.zig @@ -53,7 +53,7 @@ pub fn doMath(comptime parse: ParserFn, parent: Allocator, t: []const u8, v: []c if ((std.mem.startsWith(u8, g_it, "xlink:href=") and std.mem.startsWith(u8, g_it, "xlink:href")) or (std.mem.startsWith(u8, g_it, "id=") and std.mem.startsWith(u8, v_it, "id="))) continue; if (!std.mem.eql(u8, g_it, v_it)) { - std.debug.print("not the same: {s} vs {s}", .{ g_it, v_it }); + std.debug.print("not the same: {s} vs {s}\n", .{ g_it, v_it }); break :blk false; } } |
