diff options
Diffstat (limited to 'Source/Core/Common/StringUtil.h')
| -rw-r--r-- | Source/Core/Common/StringUtil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/StringUtil.h b/Source/Core/Common/StringUtil.h index 9a1ddcba16..ea82581355 100644 --- a/Source/Core/Common/StringUtil.h +++ b/Source/Core/Common/StringUtil.h @@ -314,7 +314,7 @@ bool CaseInsensitiveContains(std::string_view haystack, std::string_view needle) // 'std::less'-like comparison function object type for case-insensitive strings. struct CaseInsensitiveLess { - using is_transparent = void; // Allow heterogenous lookup. + using is_transparent = void; // Allow heterogeneous lookup. bool operator()(std::string_view a, std::string_view b) const; }; |
