summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qhash.cpp
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@digia.com>2013-07-26 14:50:11 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-07-29 12:08:23 +0200
commit4f7727d861cc7df8125cbc6f637120c18d679034 (patch)
treef71f1d2fb124877bcdcdce5376dc32cd6e88f2c7 /src/corelib/tools/qhash.cpp
parent456a4740cced1eb84d73d0e10869764e79e303f7 (diff)
Correct QHash::values() documentation.
Change-Id: Ia19bd0578591f77e5aee1c7e3e619ba97754f384 Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/corelib/tools/qhash.cpp')
-rw-r--r--src/corelib/tools/qhash.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/tools/qhash.cpp b/src/corelib/tools/qhash.cpp
index 59e7a979dc..4b9d120bb3 100644
--- a/src/corelib/tools/qhash.cpp
+++ b/src/corelib/tools/qhash.cpp
@@ -1226,7 +1226,7 @@ void QHashData::checkSanity()
/*! \fn QList<T> QHash::values() const
Returns a list containing all the values in the hash, in an
- arbitrary order. If a key is associated multiple values, all of
+ arbitrary order. If a key is associated with multiple values, all of
its values will be in the list, and not just the most recently
inserted one.