Merge pull request #8430 from JosJuice/eof-i18n-comment

InputCommon: Change "EOF" to "end of expression" in user facing string
This commit is contained in:
Mat M 2019-10-26 15:02:48 -04:00 committed by GitHub
commit cc6a1193b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -473,7 +473,7 @@ public:
if (Peek().type == TOK_EOF) if (Peek().type == TOK_EOF)
return result; return result;
return ParseResult::MakeErrorResult(Peek(), _trans("Expected EOF.")); return ParseResult::MakeErrorResult(Peek(), _trans("Expected end of expression."));
} }
private: private: