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)