diff --git a/std/json.zig b/std/json.zig index b73397cd26621f6136e6aee931dd260977acad95..e96989940366c968bde34181d921e4693149cd34 100644 --- a/std/json.zig +++ b/std/json.zig @@ -1053,7 +1053,7 @@ pub const Value = union(enum) { }; // A non-stream JSON parser which constructs a tree of Value's. -const JsonParser = struct { +pub const JsonParser = struct { allocator: &Allocator, state: State, copy_strings: bool,