summaryrefslogtreecommitdiffstats
path: root/src/corelib/thread
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2020-04-27 08:07:29 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2020-04-27 13:16:48 +0200
commit31ec0c8e71d67b9cbcf4809010b36ca3107fe661 (patch)
tree25980fe3897599449ac4e1a17acd560b06205688 /src/corelib/thread
parent50b30976837be0969efdccced68cfb584d99981a (diff)
Fix doc
Change-Id: I0df2a430b451718e2fefdaa1632b81e2d16107cc Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Diffstat (limited to 'src/corelib/thread')
-rw-r--r--src/corelib/thread/qexception.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/corelib/thread/qexception.cpp b/src/corelib/thread/qexception.cpp
index 5c7a05c9c2..2dc277523a 100644
--- a/src/corelib/thread/qexception.cpp
+++ b/src/corelib/thread/qexception.cpp
@@ -47,12 +47,12 @@ QT_BEGIN_NAMESPACE
/*!
\class QException
\inmodule QtCore
- \brief The QException class provides a base class for exceptions that can transferred across threads.
+ \brief The QException class provides a base class for exceptions that can be transferred across threads.
\since 5.0
Qt Concurrent supports throwing and catching exceptions across thread
- boundaries, provided that the exception inherit from QException
- and implement two helper functions:
+ boundaries, provided that the exception inherits from QException
+ and implements two helper functions:
\snippet code/src_corelib_thread_qexception.cpp 0