aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorPalm <87849942+Palm404@users.noreply.github.com>2021-08-20 15:25:23 -0700
committerGitHub <noreply@github.com>2021-08-20 15:25:23 -0700
commitf1153fdcb0ab7dd174a6e6cc50765fbc9a6881b9 (patch)
tree68b37b5d1463a16e2ac18705c988dddf5b541a87
parent008ad0d26b78f27c2be52ba703f339dc620c9732 (diff)
fix: Syntax error to fit formatting
-rw-r--r--exercises/024_errors4.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/024_errors4.zig b/exercises/024_errors4.zig
index d45ab92..b4fa955 100644
--- a/exercises/024_errors4.zig
+++ b/exercises/024_errors4.zig
@@ -59,7 +59,7 @@ fn fixTooSmall(n: u32) MyNumberError!u32 {
// If we get a TooSmall error, we should return 10.
// If we get any other error, we should return that error.
// Otherwise, we return the u32 number.
- return detectProblems(n) ???
+ return detectProblems(n) ???;
}
fn detectProblems(n: u32) MyNumberError!u32 {