diff options
author | Dave Gauer <ratfactor@gmail.com> | 2021-02-16 18:25:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-16 18:25:58 -0500 |
commit | 62fc8f7139a348346c7befde7cccff3076dc8cc6 (patch) | |
tree | 65beededa9585b195d87d8febac91947657286e5 | |
parent | 377023e1833ffb18e2b54790a5cc99dde85f84d2 (diff) | |
parent | 35e00be944bf636870c00bfdb2282dd48abe7d90 (diff) | |
download | ziglings-62fc8f7139a348346c7befde7cccff3076dc8cc6.tar.gz ziglings-62fc8f7139a348346c7befde7cccff3076dc8cc6.tar.bz2 ziglings-62fc8f7139a348346c7befde7cccff3076dc8cc6.tar.xz ziglings-62fc8f7139a348346c7befde7cccff3076dc8cc6.zip |
Merge pull request #24 from mz0/fix06
fix repeat target
-rw-r--r-- | exercises/06_strings.zig | 2 |
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) |