From 4f6bcb05684479fbe02f38e72255703923e32a6d Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Sun, 18 Jan 2015 00:18:07 +0300 Subject: [PATCH] Fixed typos [#METR-2807]. --- dbms/include/DB/Common/FileChecker.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbms/include/DB/Common/FileChecker.h b/dbms/include/DB/Common/FileChecker.h index cbeef6697fc..de8f59d6df9 100644 --- a/dbms/include/DB/Common/FileChecker.h +++ b/dbms/include/DB/Common/FileChecker.h @@ -63,7 +63,7 @@ public: Poco::File file(Poco::Path(files_info_path).parent().toString() + "/" + filename); if (!file.exists()) { - LOG_ERROR(log, "File " << file.path() << " doesn't exists"); + LOG_ERROR(log, "File " << file.path() << " doesn't exist"); correct = false; continue; }