| author | |
| committer | |
| log | 556db2ca36afccd623d80b620139a1428c7b65fa |
| tree | 860752335c47d1fe92d48dc12b448852bb3d1041 |
| parent | 65a87ff299a364e7d8bab6256e0b05022f1a2620 |
| signature |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/json/stringify.zig+1-1| ... | ... | @@ -88,7 +88,7 @@ pub fn stringifyAlloc( |
| 88 | 88 | allocator: Allocator, |
| 89 | 89 | value: anytype, |
| 90 | 90 | options: StringifyOptions, |
| 91 | ) error{OutOfMemory}![]const u8 { | |
| 91 | ) error{OutOfMemory}![]u8 { | |
| 92 | 92 | var list = std.ArrayList(u8).init(allocator); |
| 93 | 93 | errdefer list.deinit(); |
| 94 | 94 | try stringifyArbitraryDepth(allocator, value, options, list.writer()); |