Merge pull request #70 from Palm404/patch-1

fix: Syntax error to fit formatting
This commit is contained in:
Dave Gauer 2021-08-24 09:28:21 -04:00 committed by GitHub
commit e36b2973c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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 {