InputCommon/ExpressionParser: Make function argument parsing error
message more clear.
This commit is contained in:
parent
897978e955
commit
e4b464e727
|
@ -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."));
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue