From 620e506f7c3003bbe8a64e57b2a2971ac49acec3 Mon Sep 17 00:00:00 2001 From: Dave Gauer Date: Thu, 18 Mar 2021 18:46:44 -0400 Subject: Update 005_arrays2.zig ex005 was too to --- exercises/005_arrays2.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exercises') 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; -- cgit v1.2.3-ZIG