diff options
author | Mark Zhitomirski <mz@exactpro.com> | 2021-02-16 23:36:33 +0300 |
---|---|---|
committer | Mark Zhitomirski <mz@exactpro.com> | 2021-02-16 23:36:33 +0300 |
commit | 35e00be944bf636870c00bfdb2282dd48abe7d90 (patch) | |
tree | 679206b6259010f287a488563b05475fca0c2147 /exercises | |
parent | f0c50bc8c67fc205aad708be49a78282cf2b00a8 (diff) | |
download | ziglings-35e00be944bf636870c00bfdb2282dd48abe7d90.tar.gz ziglings-35e00be944bf636870c00bfdb2282dd48abe7d90.tar.bz2 ziglings-35e00be944bf636870c00bfdb2282dd48abe7d90.tar.xz ziglings-35e00be944bf636870c00bfdb2282dd48abe7d90.zip |
fix repeat target
Diffstat (limited to 'exercises')
-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) |