summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-03-05 14:07:07 -0500
committerDave Gauer <dave@ratfactor.com>2021-03-05 14:07:07 -0500
commit35e99e625d4ce0c235ecb6e9b12d468a41ae3517 (patch)
tree207c3b0bda924f890be15881cef5b165deaa31d5
parenta75c9f5e0723fbeca147fdf0b2534ffb3b8bd7ea (diff)
ex51 word crimes solved
-rw-r--r--exercises/51_values.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/51_values.zig b/exercises/51_values.zig
index 7fb1ffb..dd68d3b 100644
--- a/exercises/51_values.zig
+++ b/exercises/51_values.zig
@@ -141,8 +141,8 @@ pub fn main() void {
// NOTE:
//
// If we tried to do this with a *const Character pointer,
- // that would NOT work because that makes the data we would
- // get a compiler error because the VALUE becomes immutable!
+ // that would NOT work and we would get a compiler error
+ // because the VALUE becomes immutable!
//
// Moving along...
//