| ... | @@ -83,7 +83,7 @@ inline fn do(comptime Ctx: type, alloc: std.mem.Allocator, writer: anytype, comp | ... | @@ -83,7 +83,7 @@ inline fn do(comptime Ctx: type, alloc: std.mem.Allocator, writer: anytype, comp |
| 83 | try writer.writeAll(x); | 83 | try writer.writeAll(x); |
| 84 | return; | 84 | return; |
| 85 | } | 85 | } |
| 86 | const s = std.mem.trimRight(u8, x, "\n"); | 86 | const s = std.mem.trim(u8, x, "\n"); |
| 87 | try writeEscaped(s, writer); | 87 | try writeEscaped(s, writer); |
| 88 | return; | 88 | return; |
| 89 | } | 89 | } |