Cleaned up some trailing whitespace

This commit is contained in:
Joseph T Lyons
2021-03-14 01:26:52 -05:00
parent 68dd401e42
commit a3ad620c29
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 {