mirror of
https://codeberg.org/ziglings/exercises.git
synced 2024-12-26 01:20:30 +00:00
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
This commit is contained in:
commit
e2b20b3406
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ const TripItem = union(enum) {
|
||||||
fn printMe(self: TripItem) void {
|
fn printMe(self: TripItem) void {
|
||||||
switch (self) {
|
switch (self) {
|
||||||
// Oops! The hermit forgot how to capture the union values
|
// 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!
|
// 'p' so the print statements work!
|
||||||
.place => print("{s}", .{p.name}),
|
.place => print("{s}", .{p.name}),
|
||||||
.path => print("--{}->", .{p.dist}),
|
.path => print("--{}->", .{p.dist}),
|
||||||
|
|
Loading…
Reference in a new issue