From 76b8fcdb2801995e3c92c5477886b50cca30ab21 Mon Sep 17 00:00:00 2001 From: felixrabe Date: Fri, 30 May 2025 12:12:26 +0200 Subject: [PATCH] Add ')' --- exercises/050_no_value.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/050_no_value.zig b/exercises/050_no_value.zig index 8c73ed3..f5365cf 100644 --- a/exercises/050_no_value.zig +++ b/exercises/050_no_value.zig @@ -43,7 +43,7 @@ // // "void" is a _type_, not a value. It is the most popular of the // Zero Bit Types (those types which take up absolutely no space -// and have only a semantic value. When compiled to executable +// and have only a semantic value). When compiled to executable // code, zero bit types generate no code at all. The above example // shows a variable foo of type void which is assigned the value // of an empty expression. It's much more common to see void as