summaryrefslogtreecommitdiff
path: root/patches
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2024-09-20 12:10:55 +0200
committerChris Boesch <chrboesch@noreply.codeberg.org>2024-09-20 12:10:55 +0200
commitd1b49f353eaa7358a4041a3090e87f49dc0a4bf6 (patch)
treeb40acd2e4de00700d119866411813f2dd8eb4212 /patches
parent94b5b4bf4bd2cef9adcca401dc75d1b6cd079fb4 (diff)
Minor improvements.
Diffstat (limited to 'patches')
-rw-r--r--patches/patches/108_labeled_switch.patch12
1 files changed, 6 insertions, 6 deletions
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", .{});
}