diff options
author | Dave Gauer <ratfactor@gmail.com> | 2021-03-18 18:46:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-18 18:46:44 -0400 |
commit | 620e506f7c3003bbe8a64e57b2a2971ac49acec3 (patch) | |
tree | 17e5e544699d8ff7cb9604baed310c26d0cc552f /exercises/005_arrays2.zig | |
parent | 4fdaab7f8455cd044b0f7262ec86dd4a42d25c1d (diff) | |
download | ziglings-620e506f7c3003bbe8a64e57b2a2971ac49acec3.tar.gz ziglings-620e506f7c3003bbe8a64e57b2a2971ac49acec3.tar.bz2 ziglings-620e506f7c3003bbe8a64e57b2a2971ac49acec3.tar.xz ziglings-620e506f7c3003bbe8a64e57b2a2971ac49acec3.zip |
Update 005_arrays2.zig
ex005 was too to
Diffstat (limited to 'exercises/005_arrays2.zig')
-rw-r--r-- | exercises/005_arrays2.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/005_arrays2.zig b/exercises/005_arrays2.zig index 9282a31..57b1962 100644 --- a/exercises/005_arrays2.zig +++ b/exercises/005_arrays2.zig @@ -23,7 +23,7 @@ pub fn main() void { const leet = ???; // (Problem 2) - // Please set this array to using repetition. + // Please set this array using repetition. // It should result in: 1 0 0 1 1 0 0 1 1 0 0 1 const bit_pattern = [_]u8{ ??? } ** 3; |