| author | |
| committer | |
| log | 7306ea63fbf1d83b3ba8df1822a55d2e859997ab |
| tree | 9106b618ff29bd1d29b0c3a38683edc96a3e1fee |
| parent | 19c3e2203e69a6bc51b9e7c80eeb57cb01978ba2 |
| signature |
debug allocator is strict about length matching1 files changed, 1 insertions(+), 1 deletions(-)
yaml.zig+1-1| ... | @@ -87,7 +87,7 @@ pub const Item = union(enum) { | ... | @@ -87,7 +87,7 @@ pub const Item = union(enum) { |
| 87 | pub const Sequence = []const Item; | 87 | pub const Sequence = []const Item; |
| 88 | 88 | ||
| 89 | pub const Key = struct { | 89 | pub const Key = struct { |
| 90 | key: string, | 90 | key: [:0]const u8, |
| 91 | value: Value, | 91 | value: Value, |
| 92 | 92 | ||
| 93 | pub fn deinit(self: *const Key, alloc: std.mem.Allocator) void { | 93 | pub fn deinit(self: *const Key, alloc: std.mem.Allocator) void { |