diff --git a/src/Disks/ObjectStorages/Web/WebObjectStorage.cpp b/src/Disks/ObjectStorages/Web/WebObjectStorage.cpp index 8550ce0cd6e..1db5024124f 100644 --- a/src/Disks/ObjectStorages/Web/WebObjectStorage.cpp +++ b/src/Disks/ObjectStorages/Web/WebObjectStorage.cpp @@ -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();