Skip to content

Commit b7811d3

Browse files
committed
whitespace cleanup
1 parent 9c2ed8d commit b7811d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/parser.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -891,7 +891,7 @@ static AstNode *ast_parse_if_statement(ParseContext *pc) {
891891
}
892892

893893
if (body == nullptr) {
894-
Token *tok = eat_token(pc);
894+
Token *tok = eat_token(pc);
895895
ast_error(pc, tok, "expected if body, found '%s'", token_name(tok->id));
896896
}
897897

@@ -1000,7 +1000,7 @@ static AstNode *ast_parse_for_statement(ParseContext *pc) {
10001000
}
10011001

10021002
if (body == nullptr) {
1003-
Token *tok = eat_token(pc);
1003+
Token *tok = eat_token(pc);
10041004
ast_error(pc, tok, "expected loop body, found '%s'", token_name(tok->id));
10051005
}
10061006

@@ -1034,7 +1034,7 @@ static AstNode *ast_parse_while_statement(ParseContext *pc) {
10341034
}
10351035

10361036
if (body == nullptr) {
1037-
Token *tok = eat_token(pc);
1037+
Token *tok = eat_token(pc);
10381038
ast_error(pc, tok, "expected loop body, found '%s'", token_name(tok->id));
10391039
}
10401040

0 commit comments

Comments
 (0)