summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-03-18 18:46:44 -0400
committerGitHub <noreply@github.com>2021-03-18 18:46:44 -0400
commit0ee4750b746a2ba91d66bfed353be2486c5e34ef (patch)
tree17e5e544699d8ff7cb9604baed310c26d0cc552f
parent8923b3f4a98278ebd234e3446bf8a3f9ac4c2741 (diff)
Update 005_arrays2.zig
ex005 was too to
-rw-r--r--exercises/005_arrays2.zig2
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;