Fix superfluous `"` in error message

This commit is contained in:
Markus Sauermann 2023-08-13 00:38:10 +02:00
parent 4714e95896
commit fa8fec2cc1
1 changed files with 1 additions and 1 deletions

View File

@ -2446,7 +2446,7 @@ GDScriptParser::ExpressionNode *GDScriptParser::parse_binary_operator(Expression
complete_extents(operation); complete_extents(operation);
if (operation->right_operand == nullptr) { 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. // TODO: Also for unary, ternary, and assignment.