From 02478759b4f759cd19f0869b5e2ca2aa3e3a8624 Mon Sep 17 00:00:00 2001 From: factormystic Date: Sat, 26 Oct 2024 20:43:47 +0000 Subject: [PATCH] Rephrase instruction for clarity --- exercises/058_quiz7.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/058_quiz7.zig b/exercises/058_quiz7.zig index cf32fc3..fda83fc 100644 --- a/exercises/058_quiz7.zig +++ b/exercises/058_quiz7.zig @@ -190,7 +190,7 @@ const TripItem = union(enum) { fn printMe(self: TripItem) void { switch (self) { // Oops! The hermit forgot how to capture the union values - // in a switch statement. Please capture both values as + // in a switch statement. Please capture each value as // 'p' so the print statements work! .place => print("{s}", .{p.name}), .path => print("--{}->", .{p.dist}),