Fix tabulation

This commit is contained in:
alesapin 2023-10-10 17:09:26 +02:00
parent b677318415
commit 3e2c9c662c

View File

@ -166,11 +166,11 @@ bool WebObjectStorage::exists(const std::string & path) const
shared_lock.unlock();
std::unique_lock unique_lock(metadata_mutex);
/// The code relies on invariant that if this function returned true
/// the file exists in files.
/// The code relies on invariant that if this function returned true
/// the file exists in files.
/// In this case we have a directory which doesn't explicitly exists (like store/xxx/yyy)
/// ^^^^^
/// Adding it to the files
/// Adding it to the files
files.emplace(std::make_pair(path, FileData({.type = FileType::Directory})));
unique_lock.unlock();