aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Gauer <[email protected]>2022-01-06 18:07:04 -0500
committerGitHub <[email protected]>2022-01-06 18:07:04 -0500
commit75ea370352de75471ffb0df8c3076e824be9acd5 (patch)
tree49c47411f7af23c039b202e48563c624aad65781
parentf0357ea91ca2f2697052bc28ab5219da85dcf272 (diff)
parentd10ca483b085ca6f68b3e59f37d66d35b5122c19 (diff)
downloadziglings-75ea370352de75471ffb0df8c3076e824be9acd5.tar.xz
ziglings-75ea370352de75471ffb0df8c3076e824be9acd5.zip
Merge pull request #87 from kimshrier/exercise_061_typo
remove redundant word "a"
-rw-r--r--exercises/061_coercions.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/061_coercions.zig b/exercises/061_coercions.zig
index 067edde..ccf3c9b 100644
--- a/exercises/061_coercions.zig
+++ b/exercises/061_coercions.zig
@@ -53,7 +53,7 @@
// 9. Tagged unions coerce to the current tagged enum.
//
// 10. Enums coerce to a tagged union when that tagged field is a
-// a zero-length type that has only one value (like void).
+// zero-length type that has only one value (like void).
//
// 11. Zero-bit types (like void) can be coerced into single-item
// pointers.