From e58f155bd6261a0c1408e8bb3b177bbced828eb3 Mon Sep 17 00:00:00 2001 From: Will Clardy Date: Mon, 15 Feb 2021 16:55:19 -0500 Subject: Manually apply `zig fmt` style to comments --- exercises/14_while4.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'exercises/14_while4.zig') diff --git a/exercises/14_while4.zig b/exercises/14_while4.zig index a28b9a9..c8dfc2e 100644 --- a/exercises/14_while4.zig +++ b/exercises/14_while4.zig @@ -1,9 +1,9 @@ // // You can force a loop to exit immediately with a "break" statement: // -// while (condition) : (continue expression){ +// while (condition) : (continue expression) { // -// if(other condition) break; +// if (other condition) break; // // } // -- cgit v1.2.3-ZIG