From c6b4438c62f2aa4340b7dffcb21961c713d8abc1 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Fri, 25 Oct 2019 16:56:29 +0200 Subject: [PATCH] InputCommon: Change "EOF" to "end of expression" in user facing string This is hopefully clearer, since we're not dealing with a file. --- Source/Core/InputCommon/ControlReference/ExpressionParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: