summaryrefslogtreecommitdiffstatshomepage
path: root/exercises/024_errors4.zig
diff options
context:
space:
mode:
authorJoseph T Lyons <JosephTLyons@gmail.com>2021-03-14 01:26:52 -0500
committerJoseph T Lyons <JosephTLyons@gmail.com>2021-03-14 01:26:52 -0500
commita3ad620c29ca3ec0b3b4a13c0fed1988d71fd505 (patch)
treede86f5a41091415c3f3a2763859a9ad9d212b4a5 /exercises/024_errors4.zig
parent68dd401e4286d8f6ac2364a6a07c3f8328a46726 (diff)
Cleaned up some trailing whitespace
Diffstat (limited to 'exercises/024_errors4.zig')
-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 560b129..7712f76 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 {