aboutsummaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2021-02-16 18:25:58 -0500
committerGitHub <noreply@github.com>2021-02-16 18:25:58 -0500
commit62fc8f7139a348346c7befde7cccff3076dc8cc6 (patch)
tree65beededa9585b195d87d8febac91947657286e5 /exercises
parent377023e1833ffb18e2b54790a5cc99dde85f84d2 (diff)
parent35e00be944bf636870c00bfdb2282dd48abe7d90 (diff)
downloadziglings-62fc8f7139a348346c7befde7cccff3076dc8cc6.tar.gz
ziglings-62fc8f7139a348346c7befde7cccff3076dc8cc6.tar.bz2
ziglings-62fc8f7139a348346c7befde7cccff3076dc8cc6.tar.xz
ziglings-62fc8f7139a348346c7befde7cccff3076dc8cc6.zip
Merge pull request #24 from mz0/fix06
fix repeat target
Diffstat (limited to 'exercises')
-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)