| author | |
| committer | |
| log | 1736776c117879aa4b0328459893740859e4801c |
| tree | 4927512f3d236d4cf7d8a51dfc70bb9e94ef3cb0 |
| parent | 9456af43d671a899ff5725f99e5186040fff094f |
1 files changed, 1 insertions(+), 1 deletions(-)
src/lib.zig+1-1| ... | ... | @@ -83,7 +83,7 @@ inline fn do(comptime Ctx: type, alloc: std.mem.Allocator, writer: anytype, comp |
| 83 | 83 | try writer.writeAll(x); |
| 84 | 84 | return; |
| 85 | 85 | } |
| 86 | const s: string = x; | |
| 86 | const s = std.mem.trimRight(u8, x, "\n"); | |
| 87 | 87 | for (s) |c| { |
| 88 | 88 | if (entityLookupBefore(&[_]u8{c})) |ent| { |
| 89 | 89 | try writer.writeAll(ent.entity); |