From d10ca483b085ca6f68b3e59f37d66d35b5122c19 Mon Sep 17 00:00:00 2001 From: Kim SHrier Date: Sat, 25 Dec 2021 15:21:33 -0700 Subject: [PATCH] remove redundant word "a" --- exercises/061_coercions.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.