Fix copy-paste error in the QMultiHash documentation

Pick-to: 6.8 6.7 6.5
Change-Id: I769a94710994a17160cca7f00243a634d8caf29c
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
Andras Mantia 2024-07-17 11:15:59 +03:00 committed by Andras Mantia
parent a984d98c97
commit 6f70ab027e

View File

@ -3842,7 +3842,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
@ -3854,7 +3854,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