diff --git a/src/TableFunctions/TableFunctionSQLite.cpp b/src/TableFunctions/TableFunctionSQLite.cpp index 238a776dd8f..0817e87cfd7 100644 --- a/src/TableFunctions/TableFunctionSQLite.cpp +++ b/src/TableFunctions/TableFunctionSQLite.cpp @@ -79,7 +79,7 @@ void TableFunctionSQLite::parseArguments(const ASTPtr & ast_function, ContextPtr std::error_code err; String canonical_path = fs::canonical(database_path, err); - /// The path existance is also checked here. + /// The path existence is also checked. if (err) throw Exception(ErrorCodes::PATH_ACCESS_DENIED, "SQLite database path '{}' is invalid. Error: {}", database_path, err.message());