diff options
author | Dave Gauer <ratfactor@gmail.com> | 2022-07-31 10:20:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-31 10:20:42 -0400 |
commit | 155784192d2f9206b63f3140ae12875a5c3563be (patch) | |
tree | af612f41ae9012aa53886d30c4fff8ef4f4b47e7 /exercises | |
parent | ee4e397d246950196bef07b52826dbbcbeaaf505 (diff) | |
parent | c222d695e9417ca5e5a14beac8f07613a14d4686 (diff) | |
download | ziglings-155784192d2f9206b63f3140ae12875a5c3563be.tar.gz ziglings-155784192d2f9206b63f3140ae12875a5c3563be.tar.bz2 ziglings-155784192d2f9206b63f3140ae12875a5c3563be.tar.xz ziglings-155784192d2f9206b63f3140ae12875a5c3563be.zip |
Merge pull request #116 from jtgoen/fix-format-specifiers
Fix issue with formatting from std library updates
Diffstat (limited to 'exercises')
-rw-r--r-- | exercises/050_no_value.zig | 2 | ||||
-rw-r--r-- | exercises/082_anonymous_structs3.zig | 2 |
2 files changed, 2 insertions, 2 deletions
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(); } diff --git a/exercises/082_anonymous_structs3.zig b/exercises/082_anonymous_structs3.zig index 1214589..8344321 100644 --- a/exercises/082_anonymous_structs3.zig +++ b/exercises/082_anonymous_structs3.zig @@ -116,7 +116,7 @@ fn printTuple(tuple: anytype) void { // @field(foo, "x"); // returns the value at foo.x // // The first field should print as: "0"(bool):true - print("\"{s}\"({s}):{any} ", .{ + print("\"{s}\"({any}):{any} ", .{ field.???, field.???, ???, |