diff --git a/src/core/excelreader.cpp b/src/core/excelreader.cpp index c388d3e..57c17aa 100644 --- a/src/core/excelreader.cpp +++ b/src/core/excelreader.cpp @@ -1,8 +1,8 @@ #include "excelreader.h" #include "utils.h" -#include #include +#include namespace fs = std::filesystem; @@ -10,8 +10,8 @@ void ExcelReader::readSellersFromFile(const fs::path& filePath, Marketplace* mar { xlnt::workbook wb; std::ifstream mystream(filePath, std::ios::binary); - if(!mystream.is_open()) { - throw std::runtime_error("Could not open ecxel file"); + if (!mystream.is_open()) { + throw std::runtime_error("Could not open Excel file"); } wb.load(mystream);