authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2024-06-01 06:01:15 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2024-06-01 06:01:15 -07:00
log96e162492f32df28e9b38f31ff558d63f59e23a0
treeb2c50129289936e326f9913945b0c73276193c60
parent23f74f55c3bab1fb1128e92142b2f676eabe75dd

rename param


1 files changed, 2 insertions(+), 2 deletions(-)

json.zig+2-2
...@@ -454,8 +454,8 @@ pub const Document = struct {...@@ -454,8 +454,8 @@ pub const Document = struct {
454 extras: []const u8,454 extras: []const u8,
455 root: ValueIndex,455 root: ValueIndex,
456456
457 pub fn deinit(doc: *const Document, alloc: std.mem.Allocator) void {457 pub fn deinit(this: *const Document, alloc: std.mem.Allocator) void {
458 alloc.free(doc.extras);458 alloc.free(this.extras);
459 }459 }
460};460};
461461