Browse Source

Replace unclosed opening paren with dash

Will Clardy 4 years ago
parent
commit
fa83fc47e5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      exercises/12_while2.zig

+ 1 - 1
exercises/12_while2.zig

@@ -1,7 +1,7 @@
 //
 //
 // Zig 'while' statements can have an optional 'continue expression'
 // Zig 'while' statements can have an optional 'continue expression'
 // which runs every time the while loop continues (either at the
 // which runs every time the while loop continues (either at the
-// end of the loop or when an explicit 'continue' is invoked (we'll
+// end of the loop or when an explicit 'continue' is invoked - we'll
 // try those out next):
 // try those out next):
 //
 //
 //     while (condition) : (continue expression) {
 //     while (condition) : (continue expression) {