More minor stylization changes (remove unneeded parentheses)

This commit is contained in:
gingerBill
2021-06-14 11:34:31 +01:00
parent 6f745677b4
commit 9f8a63cb43
5 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -526,7 +526,7 @@ scan :: proc(s: ^Scanner) -> (tok: rune) {
s.pos.line = 0;
redo: for {
for (ch < utf8.RUNE_SELF && ch in s.whitespace) {
for ch < utf8.RUNE_SELF && (ch in s.whitespace) {
ch = advance(s);
}