InputCommon/ExpressionParser: Make function argument parsing error

message more clear.
This commit is contained in:
Jordan Woyak 2025-01-28 19:20:50 -06:00
parent 897978e955
commit e4b464e727
1 changed files with 1 additions and 1 deletions

View File

@ -764,7 +764,7 @@ private:
// Comma before the next argument.
if (TOK_COMMA != tok.type)
return ParseResult::MakeErrorResult(tok, Common::GetStringT("Expected comma."));
return ParseResult::MakeErrorResult(tok, Common::GetStringT("Expected closing paren."));
};
}
}