summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 771e0ed..8074f7e 100644
--- a/exercises/050_no_value.zig
+++ b/exercises/050_no_value.zig
@@ -15,7 +15,7 @@
// "undefined" should not be thought of as a value, but as a way
// of telling the compiler that you are not assigning a value
// _yet_. Any variable may be set to undefined, but attempting to
-// read its value before assigning one _always_ a mistake.
+// read its value before assigning one is _always_ a mistake.
//
// * null
//