Skip to content

Commit

Permalink
Merge pull request godotengine#80568 from Sauermann/fix-superfluous-q…
Browse files Browse the repository at this point in the history
…uote
  • Loading branch information
Chaosus authored Aug 13, 2023
2 parents 4714e95 + fa8fec2 commit 7ba79d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/gdscript/gdscript_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2446,7 +2446,7 @@ GDScriptParser::ExpressionNode *GDScriptParser::parse_binary_operator(Expression
complete_extents(operation);

if (operation->right_operand == nullptr) {
push_error(vformat(R"(Expected expression after "%s" operator.")", op.get_name()));
push_error(vformat(R"(Expected expression after "%s" operator.)", op.get_name()));
}

// TODO: Also for unary, ternary, and assignment.
Expand Down

0 comments on commit 7ba79d6

Please sign in to comment.