From 887d989f1b0fbcec4de80678e1a5f0d375ac4232 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Fro=C5=82ow?= Date: Fri, 11 Feb 2022 10:40:22 +0000 Subject: [PATCH] add spaces --- exercises/012_while2.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/012_while2.zig b/exercises/012_while2.zig index ef53ea0..c9905aa 100644 --- a/exercises/012_while2.zig +++ b/exercises/012_while2.zig @@ -11,7 +11,7 @@ // Example: // // var foo = 2; -// while (foo<10) : (foo+=2) { +// while (foo < 10) : (foo += 2) { // // Do something with even numbers less than 10... // } //