Przeglądaj źródła

Fix superfluous `"` in error message

(cherry picked from commit fa8fec2cc1d5773693b50a5c4fbbf97e28fd15b1)
Markus Sauermann 2 lat temu
rodzic
commit
45718ef635
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      modules/gdscript/gdscript_parser.cpp

+ 1 - 1
modules/gdscript/gdscript_parser.cpp

@@ -2444,7 +2444,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.