diff options
author | Yuri Rubinsky <chaosus89@gmail.com> | 2023-08-13 12:23:22 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-13 12:23:22 +0300 |
commit | 7ba79d68bd0f97797d7cb37452da6a036ba7c7c9 (patch) | |
tree | 42a1d6add0c43693147e6a033f94d73945afab71 /modules/gdscript/gdscript_parser.cpp | |
parent | 4714e95896c8db02616ea6ec7f9aff92dec1cae4 (diff) | |
parent | fa8fec2cc1d5773693b50a5c4fbbf97e28fd15b1 (diff) | |
download | redot-engine-7ba79d68bd0f97797d7cb37452da6a036ba7c7c9.tar.gz |
Merge pull request #80568 from Sauermann/fix-superfluous-quote
Diffstat (limited to 'modules/gdscript/gdscript_parser.cpp')
-rw-r--r-- | modules/gdscript/gdscript_parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_parser.cpp b/modules/gdscript/gdscript_parser.cpp index debc85ebbf..9e1e8f0c75 100644 --- a/modules/gdscript/gdscript_parser.cpp +++ b/modules/gdscript/gdscript_parser.cpp @@ -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. |