Fix copy-paste error in the QMultiHash documentation

Pick-to: 6.7 6.5
Change-Id: I769a94710994a17160cca7f00243a634d8caf29c
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
(cherry picked from commit 6f70ab027e785590f61357f907002aa3b4fd1aca)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
Andras Mantia 2024-07-17 11:15:59 +03:00 committed by Qt Cherry-pick Bot
parent 93e39f7b79
commit 7b9505eb86

View File

@ -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