From 0ec012e0c080e1686e270f033ef5aa2d74c7cc9f Mon Sep 17 00:00:00 2001 From: Jacob Young Date: Sun, 11 Jun 2023 00:41:46 -0400 Subject: [PATCH] TypedValue: fix code formatting --- src/TypedValue.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TypedValue.zig b/src/TypedValue.zig index 723207eeff..26bf25bbac 100644 --- a/src/TypedValue.zig +++ b/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),