summaryrefslogtreecommitdiffstats
path: root/src/corelib/kernel/qobjectdefs_impl.h
diff options
context:
space:
mode:
authorIvan Tkachenko <me@ratijas.tk>2020-05-26 00:07:36 +0300
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2020-05-28 18:22:24 +0000
commit6a1ce0c8061abb0b529cee8dd50db403460c5105 (patch)
tree4088e987142807e17359c71b375e6697794d17f0 /src/corelib/kernel/qobjectdefs_impl.h
parentc70ce3d042025c858faffe661f85d2482a2a0d8c (diff)
Fix most obvious typos in doc comments
Just opened some files with spell checker turned on, and corrected what was underlined. Also, see QTBUG-84427. Change-Id: I702b5bf2cfe1f23c928a6a57f117a2f571ad86ea Reviewed-by: Mitch Curtis <mitch.curtis@qt.io> (cherry picked from commit 93c8b4c0c88263569a4f2856e035aa40b7c107f2) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src/corelib/kernel/qobjectdefs_impl.h')
-rw-r--r--src/corelib/kernel/qobjectdefs_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/kernel/qobjectdefs_impl.h b/src/corelib/kernel/qobjectdefs_impl.h
index aed50d6c5a..f88b5641cb 100644
--- a/src/corelib/kernel/qobjectdefs_impl.h
+++ b/src/corelib/kernel/qobjectdefs_impl.h
@@ -403,7 +403,7 @@ namespace QtPrivate {
};
// implementation of QSlotObjectBase for which the slot is a pointer to member function of a QObject
- // Args and R are the List of arguments and the returntype of the signal to which the slot is connected.
+ // Args and R are the List of arguments and the return type of the signal to which the slot is connected.
template<typename Func, typename Args, typename R> class QSlotObject : public QSlotObjectBase
{
typedef QtPrivate::FunctionPointer<Func> FuncType;
@@ -428,7 +428,7 @@ namespace QtPrivate {
};
// implementation of QSlotObjectBase for which the slot is a functor (or lambda)
// N is the number of arguments
- // Args and R are the List of arguments and the returntype of the signal to which the slot is connected.
+ // Args and R are the List of arguments and the return type of the signal to which the slot is connected.
template<typename Func, int N, typename Args, typename R> class QFunctorSlotObject : public QSlotObjectBase
{
typedef QtPrivate::Functor<Func, N> FuncType;