From d1b49f353eaa7358a4041a3090e87f49dc0a4bf6 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Fri, 20 Sep 2024 12:10:55 +0200 Subject: Minor improvements. --- patches/patches/108_labeled_switch.patch | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'patches') diff --git a/patches/patches/108_labeled_switch.patch b/patches/patches/108_labeled_switch.patch index 467540c..fa9dd67 100644 --- a/patches/patches/108_labeled_switch.patch +++ b/patches/patches/108_labeled_switch.patch @@ -1,18 +1,18 @@ ---- a/exercises/108_labeled_switch.zig -+++ b/exercises/108_labeled_switch.zig -@@ -65,13 +65,13 @@ pub fn main() void { +--- exercises/108_labeled_switch.zig 2024-09-20 12:09:24.370066539 +0200 ++++ answers/108_labeled_switch.zig 2024-09-20 12:09:06.499711739 +0200 +@@ -65,13 +65,13 @@ // how would you fix it? - pr: switch (@as(PullRequestState, PullRequestState.Draft)) { + pr: switch (PullRequestState.Draft) { PullRequestState.Draft => continue :pr PullRequestState.InReview, - PullRequestState.InReview => continue :pr PullRequestState.Rejected, + PullRequestState.InReview => continue :pr PullRequestState.Approved, PullRequestState.Approved => continue :pr PullRequestState.Merged, PullRequestState.Rejected => { - std.debug.print("The pull request has been rejected", .{}); + std.debug.print("The pull request has been rejected.\n", .{}); return; }, - PullRequestState.Merged => break, // Would you know where to break to? + PullRequestState.Merged => break :pr, // Would you know where to break to? } - std.debug.print("The pull request has been merged", .{}); + std.debug.print("The pull request has been merged.\n", .{}); } -- cgit v1.2.3