From c68fe7634341e97c3246b627a20fa9487586ffcb Mon Sep 17 00:00:00 2001 From: dec05eba Date: Wed, 21 Aug 2019 06:08:00 +0200 Subject: hash map contains --- src/parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/parser.c') diff --git a/src/parser.c b/src/parser.c index cdf7c5b..03b835e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -521,7 +521,7 @@ static void parser_parse_else_if_statement_loop(Parser *self, IfStatement *if_st if(!next_else_if) break; else_if_stmt->next_else_if_stmt = next_else_if; - /* else statement, which because they have no conditions; can't be followed by another else statement */ + /* else statement that has no condition can't be followed by another else statement */ if(!else_if_stmt->condition) break; else_if_stmt = next_else_if; -- cgit v1.2.3