From 0152c4b463d01f31d9326fac1952cba5912b7d5e Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Wed, 1 Jul 2026 12:44:43 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20correct=20Falied=E2=86=92Failed=20typo?= =?UTF-8?q?=20in=20error=20messages=20(src/System.cc)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/System.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/System.cc b/src/System.cc index 9620b73..e5c2454 100644 --- a/src/System.cc +++ b/src/System.cc @@ -139,7 +139,7 @@ System::System(const string &strVocFile, const string &strSettingsFile, const eS if(!bVocLoad) { cerr << "Wrong path to vocabulary. " << endl; - cerr << "Falied to open at: " << strVocFile << endl; + cerr << "Failed to open at: " << strVocFile << endl; exit(-1); } cout << "Vocabulary loaded!" << endl << endl; @@ -163,7 +163,7 @@ System::System(const string &strVocFile, const string &strSettingsFile, const eS if(!bVocLoad) { cerr << "Wrong path to vocabulary. " << endl; - cerr << "Falied to open at: " << strVocFile << endl; + cerr << "Failed to open at: " << strVocFile << endl; exit(-1); } cout << "Vocabulary loaded!" << endl << endl;