From 7573ea4843648df111cebdca799ee721d8455217 Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Fri, 5 Mar 2021 14:07:07 -0500 Subject: [PATCH] ex51 word crimes solved --- exercises/51_values.zig | 4 ++-- 1 file 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... //