Browse Source

Merge pull request #9 from palash25/typo2

exercise/25 fix typo
Dave Gauer 4 years ago
parent
commit
a87c08cb3b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      exercises/25_errors5.zig

+ 1 - 1
exercises/25_errors5.zig

@@ -24,7 +24,7 @@ pub fn main() void {
 
 fn addFive(n: u32) MyNumberError!u32 {
     //
-    // This function needs to return any error which might come back from fix().
+    // 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);