aboutsummaryrefslogtreecommitdiff
path: root/exercises
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
commita69f0923e106d6e6e2d0fac5ee3091e2719959db (patch)
tree4f9f8ce86f73c5a984620d34f556f510808fae7d /exercises
parent77b72e09339194631b86e1e91910fd55a1227827 (diff)
downloadziglings-a69f0923e106d6e6e2d0fac5ee3091e2719959db.tar.gz
ziglings-a69f0923e106d6e6e2d0fac5ee3091e2719959db.tar.bz2
ziglings-a69f0923e106d6e6e2d0fac5ee3091e2719959db.tar.xz
ziglings-a69f0923e106d6e6e2d0fac5ee3091e2719959db.zip
Replace unclosed opening paren with dash
Diffstat (limited to 'exercises')
-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) {