Browse Source

Merge pull request #24 from mz0/fix06

fix repeat target
Dave Gauer 4 years ago
parent
commit
efdcfc70d4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      exercises/06_strings.zig

+ 1 - 1
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)