summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichele Caini <michele.caini@gmail.com>2012-12-17 23:33:49 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-12-20 01:42:05 +0100
commit6e5938311f144b237c88cff8aaddfe0159a00eb8 (patch)
tree814ee3a18f1a58f73739a7efe76acadb803496bf /src
parentcc79ed5c6a4a9a22ce41b9c5df52676784df5f80 (diff)
Review of documentation.
Terms fixing. Changes apply to Qt5 as well as Qt4. Change-Id: Ibb31ab0d68c62f3feb63722dd967932c2543fa37 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/thread/qwaitcondition.qdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/thread/qwaitcondition.qdoc b/src/corelib/thread/qwaitcondition.qdoc
index e3a526d7f8..f0649c605a 100644
--- a/src/corelib/thread/qwaitcondition.qdoc
+++ b/src/corelib/thread/qwaitcondition.qdoc
@@ -38,7 +38,7 @@
QWaitCondition allows a thread to tell other threads that some
sort of condition has been met. One or many threads can block
waiting for a QWaitCondition to set a condition with wakeOne() or
- wakeAll(). Use wakeOne() to wake one randomly selected condition or
+ wakeAll(). Use wakeOne() to wake one randomly selected thread or
wakeAll() to wake them all.
For example, let's suppose that we have three tasks that should