diff options
| author | JosJuice <josjuice@gmail.com> | 2019-10-25 16:56:29 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2019-10-25 23:49:20 +0200 |
| commit | c6b4438c62f2aa4340b7dffcb21961c713d8abc1 (patch) | |
| tree | 82807536f4744114d8439dbade89839ca0ccd87a /Source/Core/InputCommon/ControlReference/ExpressionParser.cpp | |
| parent | f54faedd7624d156f1b05e620ecf5aae9acbb8d5 (diff) | |
InputCommon: Change "EOF" to "end of expression" in user facing string
This is hopefully clearer, since we're not dealing with a file.
Diffstat (limited to 'Source/Core/InputCommon/ControlReference/ExpressionParser.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControlReference/ExpressionParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControlReference/ExpressionParser.cpp b/Source/Core/InputCommon/ControlReference/ExpressionParser.cpp index 8e9b154bf7..89cfcae15f 100644 --- a/Source/Core/InputCommon/ControlReference/ExpressionParser.cpp +++ b/Source/Core/InputCommon/ControlReference/ExpressionParser.cpp @@ -473,7 +473,7 @@ public: if (Peek().type == TOK_EOF) return result; - return ParseResult::MakeErrorResult(Peek(), _trans("Expected EOF.")); + return ParseResult::MakeErrorResult(Peek(), _trans("Expected end of expression.")); } private: |
