aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorWill Clardy <will@quexxon.net>2021-02-15 01:03:30 -0500
committerWill Clardy <will@quexxon.net>2021-02-15 01:03:30 -0500
commitfa83fc47e56b3d665647199d4680fe0197778780 (patch)
tree4f9f8ce86f73c5a984620d34f556f510808fae7d
parentbd30da390b0ee63f871401acedca55ad50dd47f1 (diff)
Replace unclosed opening paren with dash
-rw-r--r--exercises/12_while2.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/12_while2.zig b/exercises/12_while2.zig
index 2d0bd79..ef53ea0 100644
--- a/exercises/12_while2.zig
+++ b/exercises/12_while2.zig
@@ -1,7 +1,7 @@
//
// 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) {