From 35ac0745a787a1a4c12257b220390947af679ef2 Mon Sep 17 00:00:00 2001 From: Mark Zhitomirski Date: Tue, 16 Feb 2021 23:36:33 +0300 Subject: [PATCH] fix repeat target --- exercises/06_strings.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/06_strings.zig b/exercises/06_strings.zig index a58b9ef..6258816 100644 --- a/exercises/06_strings.zig +++ b/exercises/06_strings.zig @@ -22,7 +22,7 @@ pub fn main() void { const d: u8 = ziggy[???]; // (Problem 2) - // Use the array repeat '**' operator to make "ha ha ha". + // Use the array repeat '**' operator to make "ha ha ha ". const laugh = "ha " ???; // (Problem 3)