Просмотр исходного кода

Merge pull request #20 from quexxon/exercise_12_fixes

Exercise 12 fixes
Dave Gauer 4 лет назад
Родитель
Сommit
882a6b6198
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      exercises/12_while2.zig

+ 3 - 3
exercises/12_while2.zig

@@ -1,17 +1,17 @@
 //
 // Zig 'while' statements can have an optional 'continue expression'
 // 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):
 //
-//     while (condition) : (continue expression)
+//     while (condition) : (continue expression) {
 //         ...
 //     }
 //
 // Example:
 //
 //     var foo = 2;
-//     while (foo<10) : (foo+=2)
+//     while (foo<10) : (foo+=2) {
 //         // Do something with even numbers less than 10...
 //     }
 //