This commit is contained in:
Adam Millerchip 2021-12-26 00:12:34 +09:00
parent 509e2c52b0
commit 2faaabeacf
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ fn addFive(n: u32) MyNumberError!u32 {
// This function needs to return any error which might come back from detect().
// Please use a "try" statement rather than a "catch".
//
var x = detect(n);
var x = try detect(n);
return x + 5;
}