Merge pull request #80568 from Sauermann/fix-superfluous-quote
This commit is contained in:
commit
7ba79d68bd
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue