From 7b9505eb86edb95b7d562a50f0747bbc368f5d9a Mon Sep 17 00:00:00 2001 From: Andras Mantia Date: Wed, 17 Jul 2024 11:15:59 +0300 Subject: [PATCH] Fix copy-paste error in the QMultiHash documentation Pick-to: 6.7 6.5 Change-Id: I769a94710994a17160cca7f00243a634d8caf29c Reviewed-by: Thiago Macieira (cherry picked from commit 6f70ab027e785590f61357f907002aa3b4fd1aca) Reviewed-by: Qt Cherry-pick Bot --- src/corelib/tools/qhash.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/corelib/tools/qhash.cpp b/src/corelib/tools/qhash.cpp index 40e16482ee8..8a8e135843c 100644 --- a/src/corelib/tools/qhash.cpp +++ b/src/corelib/tools/qhash.cpp @@ -3828,7 +3828,7 @@ size_t qHash(long double key, size_t seed) noexcept /*! \typedef QMultiHash::const_key_value_iterator \inmodule QtCore \since 5.10 - \brief The QMap::const_key_value_iterator typedef provides an STL-style const iterator for QMultiHash and QMultiHash. + \brief The QMultiHash::const_key_value_iterator typedef provides an STL-style const iterator for QMultiHash. QMultiHash::const_key_value_iterator is essentially the same as QMultiHash::const_iterator with the difference that operator*() returns a key/value pair instead of a @@ -3840,7 +3840,7 @@ size_t qHash(long double key, size_t seed) noexcept /*! \typedef QMultiHash::key_value_iterator \inmodule QtCore \since 5.10 - \brief The QMap::key_value_iterator typedef provides an STL-style iterator for QMultiHash and QMultiHash. + \brief The QMultiHash::key_value_iterator typedef provides an STL-style iterator for QMultiHash. QMultiHash::key_value_iterator is essentially the same as QMultiHash::iterator with the difference that operator*() returns a key/value pair instead of a