Replace unclosed opening paren with dash

This commit is contained in:
Will Clardy 2021-02-15 01:03:30 -05:00
parent 77b72e0933
commit a69f0923e1

View file

@ -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) {