doc: Fix some typos in C++ integration documentation
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@nokia.com>
Tue, 25 Sep 2012 13:11:13 +0000 (15:11 +0200)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Wed, 26 Sep 2012 07:49:53 +0000 (09:49 +0200)
Change-Id: I883109cf2528a5e10487b38f453c2eed96cc3204
Reviewed-by: Samuel Rødal <samuel.rodal@digia.com>

src/qml/doc/src/cppintegration/contextproperties.qdoc
src/qml/doc/src/cppintegration/definetypes.qdoc
src/qml/doc/src/cppintegration/exposecppattributes.qdoc

index 33b4fd4..047a680 100644 (file)
@@ -30,7 +30,7 @@
 \brief Description of how to embed C++ data into QML using context properties
 
 When loading a QML object into a C++ application, it can be useful to directly embed some C++ data
-that can be used from within th QML code. This makes it possible, for example, to invoke a C++
+that can be used from within the QML code. This makes it possible, for example, to invoke a C++
 method on the embedded object, or use a C++ object instance as a data model for a QML view.
 
 The ability to inject C++ data into a QML object is made possible by the QQmlContext class. This
index 3f4c5c1..249cc32 100644 (file)
@@ -361,7 +361,7 @@ the attributes to be made accessible to \e attachee objects. For the
 
     The QML engine invokes this method in order to attach an instance of
     the attached object type to the \e attachee specified by the \c object
-    paramter.  It is customary, though not strictly required, for this method
+    parameter.  It is customary, though not strictly required, for this method
     implementation to parent the returned instance to \c object in order
     to prevent memory leaks.
 
index 99b9221..ab1deb7 100644 (file)
@@ -145,7 +145,7 @@ Text {
 }
 \endqml
 
-For maximum interopability with QML, \b {any property that is writable should
+For maximum interoperability with QML, \b {any property that is writable should
 have an associated NOTIFY signal} that is emitted whenever the property value
 has changed. This allows the property to be used with \l{Property
 Binding}{property binding}, which is an essential feature of QML that enables