summaryrefslogtreecommitdiffstatshomepage
path: root/exercises/06_strings.zig
diff options
context:
space:
mode:
authorMark Zhitomirski <mz@exactpro.com>2021-02-16 23:36:33 +0300
committerMark Zhitomirski <mz@exactpro.com>2021-02-16 23:36:33 +0300
commit35ac0745a787a1a4c12257b220390947af679ef2 (patch)
tree679206b6259010f287a488563b05475fca0c2147 /exercises/06_strings.zig
parent9b54ba79a0f1b39b69e14045e5b1463e3507c2fb (diff)
fix repeat target
Diffstat (limited to 'exercises/06_strings.zig')
-rw-r--r--exercises/06_strings.zig2
1 files changed, 1 insertions, 1 deletions
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)