aboutsummaryrefslogtreecommitdiff
path: root/exercises/14_while4.zig
diff options
context:
space:
mode:
authorWill Clardy <[email protected]>2021-02-15 16:55:19 -0500
committerWill Clardy <[email protected]>2021-02-15 16:55:19 -0500
commit97ae27435b3782ddbde69fccc5f40caee5dda2cd (patch)
tree3e2029227daedbd4ad409cc78b1aaefe52683833 /exercises/14_while4.zig
parent882a6b6198148673ec97c6e38443f8e2a6a6b576 (diff)
downloadziglings-97ae27435b3782ddbde69fccc5f40caee5dda2cd.tar.xz
ziglings-97ae27435b3782ddbde69fccc5f40caee5dda2cd.zip
Manually apply `zig fmt` style to comments
Diffstat (limited to 'exercises/14_while4.zig')
-rw-r--r--exercises/14_while4.zig4
1 files changed, 2 insertions, 2 deletions
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;
//
// }
//