1
mirror of https://github.com/qbittorrent/qBittorrent synced 2024-10-17 13:01:11 +02:00

Fix comment typo in algorithm.h (#15030)

This commit is contained in:
LoneDev 2021-05-29 05:30:47 +02:00 committed by GitHub
parent 1c34635016
commit d335f263f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,7 +44,7 @@ namespace Algorithm
{
};
// To be used with associative array types, such as QMap, QHash and it's variants
// To be used with associative array types, such as QMap, QHash and its variants
template <typename T, typename BinaryPredicate
, typename std::enable_if_t<HasMappedType<T>::value, int> = 0>
void removeIf(T &dict, BinaryPredicate &&p)