summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormikkurogue <mikkurogue@noreply.codeberg.org>2025-01-07 18:00:16 +0000
committermikkurogue <mikkurogue@noreply.codeberg.org>2025-01-07 18:00:16 +0000
commit87b258d0a90af4cf5e16986226b589c2a541db32 (patch)
treea724a0f2e674f887be43fcca1dda2fa16da1594d
parent5cdaee74205e97da127d749b07cbe6e64ba6a940 (diff)
Fix a typo: we need do we need to -> we need to
Morning delirium does not help when looking at lots of words
-rw-r--r--exercises/108_labeled_switch.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/108_labeled_switch.zig b/exercises/108_labeled_switch.zig
index bd0b478..1e39935 100644
--- a/exercises/108_labeled_switch.zig
+++ b/exercises/108_labeled_switch.zig
@@ -47,7 +47,7 @@
// but instead the value to be evaluated is now '3';
// 4. Finally we get to case '3', where we return from the function as a whole.
// 5. In this example as the input has no clear exhaustive patterns but a essentially
-// any u8 integer, we need do need to handle any case that is not explicitly handled
+// any u8 integer, we need to handle any case that is not explicitly handled
// by using the `else => {}` branch as a default case.
//
// Since step 4 or a break stament do not exist in this switch, the debug statement is