aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-02-12 10:43:00 -0500
committerGitHub <noreply@github.com>2021-02-12 10:43:00 -0500
commitd507cfc9623c63a91e52145120a6edda79a15c7d (patch)
treebfda9c9ebd0caf4fa206a532f3fda545196f1f8e
parent0ad4a0b3dbcc78273d0d15ef96b0e7839129b6a6 (diff)
parentbeb5c6bb048fbe7a8be07e43bbf50e1638ec023d (diff)
downloadziglings-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.zig2
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);