aboutsummaryrefslogtreecommitdiff
path: root/exercises/024_errors4.zig
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-03-14 15:31:40 -0400
committerGitHub <noreply@github.com>2021-03-14 15:31:40 -0400
commit1c74f82293b7facf27fcdcf6dc25ae323908a529 (patch)
treede86f5a41091415c3f3a2763859a9ad9d212b4a5 /exercises/024_errors4.zig
parent7ddfca2e358bce98e3fbdbe64b117af74fea1ab7 (diff)
parentd120664c5f622d2796d7d8c790ada1f7aa74888a (diff)
downloadziglings-1c74f82293b7facf27fcdcf6dc25ae323908a529.tar.gz
ziglings-1c74f82293b7facf27fcdcf6dc25ae323908a529.tar.bz2
ziglings-1c74f82293b7facf27fcdcf6dc25ae323908a529.tar.xz
ziglings-1c74f82293b7facf27fcdcf6dc25ae323908a529.zip
Merge pull request #36 from JosephTLyons/Whitespace-cleanup
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 {