From c222d695e9417ca5e5a14beac8f07613a14d4686 Mon Sep 17 00:00:00 2001 From: jtgoen <5403345+jtgoen@users.noreply.github.com> Date: Thu, 28 Jul 2022 18:12:50 -0600 Subject: Fix issue with formatting from std library updates --- exercises/050_no_value.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exercises/050_no_value.zig') diff --git a/exercises/050_no_value.zig b/exercises/050_no_value.zig index 8708d2d..f8e89ca 100644 --- a/exercises/050_no_value.zig +++ b/exercises/050_no_value.zig @@ -71,7 +71,7 @@ pub fn main() void { var first_line2: Err!*const [21]u8 = ???; first_line2 = "which can eternal lie"; - std.debug.print("{s} {s} / ", .{ first_line1, first_line2 }); + std.debug.print("{s} {!s} / ", .{ first_line1, first_line2 }); printSecondLine(); } -- cgit v1.2.3-ZIG