fix: Syntax error to fit formatting

This commit is contained in:
Palm 2021-08-20 15:25:23 -07:00 committed by GitHub
parent 008ad0d26b
commit f1153fdcb0

View file

@ -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 {