diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-03-05 14:07:07 -0500 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-03-05 14:07:07 -0500 |
commit | 7573ea4843648df111cebdca799ee721d8455217 (patch) | |
tree | 207c3b0bda924f890be15881cef5b165deaa31d5 /exercises | |
parent | f2867eab1b89860c47ba29f3dfeaed8938d23574 (diff) | |
download | ziglings-7573ea4843648df111cebdca799ee721d8455217.tar.gz ziglings-7573ea4843648df111cebdca799ee721d8455217.tar.bz2 ziglings-7573ea4843648df111cebdca799ee721d8455217.tar.xz ziglings-7573ea4843648df111cebdca799ee721d8455217.zip |
ex51 word crimes solved
Diffstat (limited to 'exercises')
-rw-r--r-- | exercises/51_values.zig | 4 |
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... // |