From b7c42514db96ad9cb6d57c792499b5f92d516fa1 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Fri, 27 Aug 2021 22:07:34 -0700 Subject: [PATCH] run zig fmt --- src/lib.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib.zig b/src/lib.zig index f25435581d2f0bb2105e6f6d71c053c2f2225456..961e38064058d5566fd03c7f5e4202dce0280c05 100644 --- a/src/lib.zig +++ b/src/lib.zig @@ -4,8 +4,8 @@ pub const Value = union(enum) { Object: []Member, Array: []Value, String: []const u8, - Int: i64, - Float: f64, + Int: i64, + Float: f64, Bool: bool, Null: void, @@ -143,7 +143,7 @@ const Parser = struct { std.fs.File.OpenError || std.json.StreamingParser.Error || std.mem.Allocator.Error || - error{ Overflow } || + error{Overflow} || error{InvalidCharacter} || error{ JsonExpectedObjKey, JsonExpectedValueStartGotEnd }; }; -- 2.54.0