summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/corelib/doc/src/objectmodel/bindableproperties.qdoc2
-rw-r--r--src/corelib/kernel/qproperty.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/doc/src/objectmodel/bindableproperties.qdoc b/src/corelib/doc/src/objectmodel/bindableproperties.qdoc
index cae55f73b5..f0f16aeafe 100644
--- a/src/corelib/doc/src/objectmodel/bindableproperties.qdoc
+++ b/src/corelib/doc/src/objectmodel/bindableproperties.qdoc
@@ -40,7 +40,7 @@
updated automatically whenever their dependencies change.
Bindable properties are implemented in the class QProperty, which
- consists the data object and a pointer to a management data structure, and
+ consists of the data object and a pointer to a management data structure, and
in class QObjectBindableProperty, which consists only of the data object and
uses the encapsulating QObject to store the pointer to the
management data structure.
diff --git a/src/corelib/kernel/qproperty.cpp b/src/corelib/kernel/qproperty.cpp
index fbe582304b..b017bb3230 100644
--- a/src/corelib/kernel/qproperty.cpp
+++ b/src/corelib/kernel/qproperty.cpp
@@ -1143,7 +1143,7 @@ QString QPropertyBindingError::description() const
\snippet code/src_corelib_kernel_qproperty.cpp 2
If the property does not need a changed notification, you can leave out the
- "NOFITY xChanged" in the Q_PROPERTY macro as well as the last argument
+ "NOTIFY xChanged" in the Q_PROPERTY macro as well as the last argument
of the Q_OBJECT_BINDABLE_PROPERTY and Q_OBJECT_BINDABLE_PROPERTY_WITH_ARGS
macros.
*/