Cleaned up some trailing whitespace

This commit is contained in:
Joseph T Lyons 2021-03-14 01:26:52 -05:00
parent 7ddfca2e35
commit d120664c5f
3 changed files with 3 additions and 3 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 {