diff options
| author | Chris Boesch <chrboesch@noreply.codeberg.org> | 2024-10-27 15:03:25 +0000 |
|---|---|---|
| committer | Chris Boesch <chrboesch@noreply.codeberg.org> | 2024-10-27 15:03:25 +0000 |
| commit | e2b20b3406720b8acb477087ca3060f2c2f48f2b (patch) | |
| tree | a3850ac6c1d18ca34e0050f26b43e0c419a69201 | |
| parent | 173af62d3402ad1b44e5596d9bcf3f0ea42e8a29 (diff) | |
| parent | 02478759b4f759cd19f0869b5e2ca2aa3e3a8624 (diff) | |
Merge pull request 'Rephrase instruction for clarity' (#170) from factormystic/exercises:quiz-7-instruction-clarify into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/170
| -rw-r--r-- | exercises/058_quiz7.zig | 2 |
1 files changed, 1 insertions, 1 deletions
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}), |
