aboutsummaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2022-01-06 18:07:04 -0500
committerGitHub <noreply@github.com>2022-01-06 18:07:04 -0500
commitd61a6e847425cf6fc8bb84bc1ffa59d259d85ccc (patch)
tree49c47411f7af23c039b202e48563c624aad65781 /exercises
parentef9bdb13820d0e113673ce0565f4dbd5960b2d9f (diff)
parent269da612cbb075427092d2f646070f1d3fffae56 (diff)
downloadziglings-d61a6e847425cf6fc8bb84bc1ffa59d259d85ccc.tar.gz
ziglings-d61a6e847425cf6fc8bb84bc1ffa59d259d85ccc.tar.bz2
ziglings-d61a6e847425cf6fc8bb84bc1ffa59d259d85ccc.tar.xz
ziglings-d61a6e847425cf6fc8bb84bc1ffa59d259d85ccc.zip
Merge pull request #87 from kimshrier/exercise_061_typo
remove redundant word "a"
Diffstat (limited to 'exercises')
-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.