Commit 0ec012e0c0

Jacob Young <jacobly0@users.noreply.github.com>
2023-06-11 06:41:46
TypedValue: fix code formatting
1 parent b9a4eae
Changed files (1)
src/TypedValue.zig
@@ -392,7 +392,7 @@ pub fn print(
                         const sent = ty.sentinel(mod) orelse break :blk false;
                         break :blk sent.eql(Value.zero_u8, Type.u8, mod);
                     };
-                    const str = if (zero_sent) bytes[0..bytes.len - 1] else bytes;
+                    const str = if (zero_sent) bytes[0 .. bytes.len - 1] else bytes;
                     return writer.print("\"{}\"", .{std.zig.fmtEscapes(str)});
                 },
                 .elems, .repeated_elem => return printAggregate(ty, val, writer, level, mod),