Quellcode durchsuchen

Fix superfluous `"` in error message

Markus Sauermann vor 2 Jahren
Ursprung
Commit
fa8fec2cc1
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      modules/gdscript/gdscript_parser.cpp

+ 1 - 1
modules/gdscript/gdscript_parser.cpp

@@ -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.