Browse Source

Update 005_arrays2.zig

ex005 was too to
Dave Gauer 4 years ago
parent
commit
0ee4750b74
1 changed files with 1 additions and 1 deletions
  1. 1 1
      exercises/005_arrays2.zig

+ 1 - 1
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;