mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Fix superfluous "
in error message
(cherry picked from commit fa8fec2cc1
)
This commit is contained in:
parent
2e71f6a806
commit
45718ef635
1 changed files with 1 additions and 1 deletions
|
@ -2444,7 +2444,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…
Add table
Add a link
Reference in a new issue