diff options
| author | Palm <[email protected]> | 2021-08-20 15:25:23 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-08-20 15:25:23 -0700 |
| commit | f1153fdcb0ab7dd174a6e6cc50765fbc9a6881b9 (patch) | |
| tree | 68b37b5d1463a16e2ac18705c988dddf5b541a87 /exercises/024_errors4.zig | |
| parent | 008ad0d26b78f27c2be52ba703f339dc620c9732 (diff) | |
| download | ziglings-f1153fdcb0ab7dd174a6e6cc50765fbc9a6881b9.tar.xz ziglings-f1153fdcb0ab7dd174a6e6cc50765fbc9a6881b9.zip | |
fix: Syntax error to fit formatting
Diffstat (limited to 'exercises/024_errors4.zig')
| -rw-r--r-- | exercises/024_errors4.zig | 2 |
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 { |
