aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-08-28 10:55:34 -0400
committerGitHub <noreply@github.com>2021-08-28 10:55:34 -0400
commit84c9c4072c2963719f09cdf0976445172c2ef112 (patch)
tree78eb0ef5eac4e4f6deb7dce7d1be422ab7426ef3
parent116b3552102dd168f4c97ec2ac17b386418cec3d (diff)
downloadziglings-84c9c4072c2963719f09cdf0976445172c2ef112.tar.gz
ziglings-84c9c4072c2963719f09cdf0976445172c2ef112.tar.bz2
ziglings-84c9c4072c2963719f09cdf0976445172c2ef112.tar.xz
ziglings-84c9c4072c2963719f09cdf0976445172c2ef112.zip
Update 033_iferror.zig
-rw-r--r--exercises/033_iferror.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/033_iferror.zig b/exercises/033_iferror.zig
index 0e48262..2aacc1e 100644
--- a/exercises/033_iferror.zig
+++ b/exercises/033_iferror.zig
@@ -1,6 +1,6 @@
//
// Let's revisit the very first error exercise. This time, we're going to
-// look at a special error-handling type of the "if" statement.
+// look at an error-handling variation of the "if" statement.
//
// if (foo) |value| {
//