summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc
diff options
context:
space:
mode:
authorChristian Ehrlicher <ch.ehrlicher@gmx.de>2023-10-03 16:51:59 +0200
committerChristian Ehrlicher <ch.ehrlicher@gmx.de>2023-10-03 21:08:43 +0200
commitaeeb77650f05f90bb87ffe7e66cc2b6b3713ad2f (patch)
tree24b68b11d5a3e217b1e72b559e536825b116fb0d /src/corelib/doc
parentcb4e7f4176e6135d4af0604a6e5c32682b38d33d (diff)
Qt container documenation: Misc fix for std comparison
std::map/multimap/unordered_map/unordered:multimap also need a 'Key'. Fixes: QTBUG-89904 Pick-to: 6.6 6.5 6.2 Change-Id: Ib653c941b671905762270c82218e50dfed8fc8c6 Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io>
Diffstat (limited to 'src/corelib/doc')
-rw-r--r--src/corelib/doc/src/containers.qdoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/corelib/doc/src/containers.qdoc b/src/corelib/doc/src/containers.qdoc
index df82830792..f7bb7618a2 100644
--- a/src/corelib/doc/src/containers.qdoc
+++ b/src/corelib/doc/src/containers.qdoc
@@ -387,16 +387,16 @@
\l{QHash}.
\row \li \l{QMap}<Key, T>
- \li Similar to std::map<T>.
+ \li Similar to std::map<Key, T>.
\row \li \l{QMultiMap}<Key, T>
- \li Similar to std::multimap<T>.
+ \li Similar to std::multimap<Key, T>.
\row \li \l{QHash}<Key, T>
- \li Most similar to std::unordered_map<T>.
+ \li Most similar to std::unordered_map<Key, T>.
\row \li \l{QMultiHash}<Key, T>
- \li Most similar to std::unordered_multimap<T>.
+ \li Most similar to std::unordered_multimap<Key, T>.
\endtable