| author | |
| committer | |
| log | afc21a2f1c34912f7cb8f18853f56de04e74f1fc |
| tree | 01b5aa2a735b64196a7907e70a1756fbf42feb14 |
| parent | 73016212a3ec48724e7012c4470b4c735d1f211b |
| signature |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/json.zig+1-1| ... | ... | @@ -2101,7 +2101,7 @@ pub const Parser = struct { |
| 2101 | 2101 | // Unescape a JSON string |
| 2102 | 2102 | // Only to be used on strings already validated by the parser |
| 2103 | 2103 | // (note the unreachable statements and lack of bounds checking) |
| 2104 | fn unescapeString(output: []u8, input: []const u8) !void { | |
| 2104 | pub fn unescapeString(output: []u8, input: []const u8) !void { | |
| 2105 | 2105 | var inIndex: usize = 0; |
| 2106 | 2106 | var outIndex: usize = 0; |
| 2107 | 2107 |