diff options
author | Dave Gauer <ratfactor@gmail.com> | 2021-02-12 10:43:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-12 10:43:00 -0500 |
commit | d507cfc9623c63a91e52145120a6edda79a15c7d (patch) | |
tree | bfda9c9ebd0caf4fa206a532f3fda545196f1f8e | |
parent | 0ad4a0b3dbcc78273d0d15ef96b0e7839129b6a6 (diff) | |
parent | beb5c6bb048fbe7a8be07e43bbf50e1638ec023d (diff) | |
download | ziglings-d507cfc9623c63a91e52145120a6edda79a15c7d.tar.gz ziglings-d507cfc9623c63a91e52145120a6edda79a15c7d.tar.bz2 ziglings-d507cfc9623c63a91e52145120a6edda79a15c7d.tar.xz ziglings-d507cfc9623c63a91e52145120a6edda79a15c7d.zip |
Merge pull request #9 from palash25/typo2
exercise/25 fix typo
-rw-r--r-- | exercises/25_errors5.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/25_errors5.zig b/exercises/25_errors5.zig index d9e9ce1..8b702cf 100644 --- a/exercises/25_errors5.zig +++ b/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); |