Skip to content
Permalink
Browse files
Merge pull request #8430 from JosJuice/eof-i18n-comment
InputCommon: Change "EOF" to "end of expression" in user facing string
  • Loading branch information
lioncash committed Oct 26, 2019
2 parents fed2dce + c6b4438 commit cc6a119
Showing 1 changed file with 1 addition and 1 deletion.
@@ -473,7 +473,7 @@ class Parser
if (Peek().type == TOK_EOF)
return result;

return ParseResult::MakeErrorResult(Peek(), _trans("Expected EOF."));
return ParseResult::MakeErrorResult(Peek(), _trans("Expected end of expression."));
}

private:

0 comments on commit cc6a119

Please sign in to comment.