Browse Source

add spaces

Roman Frołow 3 years ago
parent
commit
887d989f1b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      exercises/012_while2.zig

+ 1 - 1
exercises/012_while2.zig

@@ -11,7 +11,7 @@
 // Example:
 // Example:
 //
 //
 //     var foo = 2;
 //     var foo = 2;
-//     while (foo<10) : (foo+=2) {
+//     while (foo < 10) : (foo += 2) {
 //         // Do something with even numbers less than 10...
 //         // Do something with even numbers less than 10...
 //     }
 //     }
 //
 //