summaryrefslogtreecommitdiff
path: root/library/parallel_scan.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/parallel_scan.h')
-rw-r--r--library/parallel_scan.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/parallel_scan.h b/library/parallel_scan.h
index f36c5ec7..5eaa6bd9 100644
--- a/library/parallel_scan.h
+++ b/library/parallel_scan.h
@@ -63,7 +63,7 @@ public:
virtual void reportStatus(const std::wstring& statusMsg, int itemTotal) = 0; //
};
-//attention: ensure directory filtering is applied later to exclude filtered directories which have been erroneously kept
+//attention: ensure directory filtering is applied later to exclude filtered directories which have been kept as parent folders
void fillBuffer(const std::set<DirectoryKey>& keysToRead, //in
std::map<DirectoryKey, DirectoryValue>& buf, //out
bgstack15