summaryrefslogtreecommitdiff
path: root/exercises/050_no_value.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2025-06-17 14:10:16 +0200
committerChris Boesch <chrboesch@noreply.codeberg.org>2025-06-17 14:10:16 +0200
commitbc96d06da4d3400f40babd1de0eb0e100d734273 (patch)
treed93343ffda857f50e8acf2ad875552a2bb1e8292 /exercises/050_no_value.zig
parent451e1a373969f81fb63223e10b1d69ba7dac3523 (diff)
parentafaab2efca069cb4144d8bcb3a82ee042315ea6b (diff)
Merge branch 'main' into i278
Diffstat (limited to 'exercises/050_no_value.zig')
-rw-r--r--exercises/050_no_value.zig2
1 files changed, 1 insertions, 1 deletions
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