aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-08-24 09:28:21 -0400
committerGitHub <noreply@github.com>2021-08-24 09:28:21 -0400
commit1e1bed46e15d88af90f7885a4d4c1e9eaaee0600 (patch)
treeac0ee303793c451244ac330a9978c79ae8e51e67 /exercises
parent784c5c16007c3561c21bd90444a08c075ad73b9b (diff)
parentf1153fdcb0ab7dd174a6e6cc50765fbc9a6881b9 (diff)
Merge pull request #70 from Palm404/patch-1
fix: Syntax error to fit formatting
Diffstat (limited to 'exercises')
-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 {