Skip to content

Commit

Permalink
fix: small typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Totto16 committed Nov 27, 2024
1 parent c4c176f commit 6d2e5e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/source/DataSource.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ source::MemoryMappedDataSource::open(const std::filesystem::path &file,
_current_pos = 0;

if (!std::filesystem::exists(file)) {
return "Fiel doesn't exist";
return "File doesn't exist";
}

_fd = ::open(file.string().c_str(), O_RDONLY, 0);
Expand Down

0 comments on commit 6d2e5e0

Please sign in to comment.