summaryrefslogtreecommitdiffstats
path: root/doc/src/declarative/qtbinding.qdoc
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2010-10-01 03:36:20 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2010-10-01 03:36:20 (GMT)
commit183243963d523beaf4fdff6b9a7dcb679ebbc71f (patch)
treea0c16b8937705411b261f54dddc9157c35474232 /doc/src/declarative/qtbinding.qdoc
parent2e078ddc87277e47f3e9b7a21d1197b0d7309d2d (diff)
downloadQt-183243963d523beaf4fdff6b9a7dcb679ebbc71f.zip
Qt-183243963d523beaf4fdff6b9a7dcb679ebbc71f.tar.gz
Qt-183243963d523beaf4fdff6b9a7dcb679ebbc71f.tar.bz2
Doc: typographical and spelling errors.
Diffstat (limited to 'doc/src/declarative/qtbinding.qdoc')
-rw-r--r--doc/src/declarative/qtbinding.qdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/declarative/qtbinding.qdoc b/doc/src/declarative/qtbinding.qdoc
index 35a05d2..53db5c7 100644
--- a/doc/src/declarative/qtbinding.qdoc
+++ b/doc/src/declarative/qtbinding.qdoc
@@ -134,7 +134,7 @@ the window text will update accordingly.
To detect when a C++ property value - in this case the \c CustomPalette's \c text property -
changes, the property must have a corresponding NOTIFY signal. The NOTIFY signal specifies a signal
that is emitted whenever the property changes value. Implementers should take care to only emit the
-signal if the value \e changes to prevent loops from occuring. Accessing a property from a
+signal if the value \e changes to prevent loops from occurring. Accessing a property from a
binding that does not have a NOTIFY signal will cause QML to issue a warning at runtime.
\section2 Dynamic Structured Data
@@ -256,7 +256,7 @@ For example:
\snippet doc/src/snippets/declarative/qtbinding/resources/main.qml 0
Note that the resource system cannot be accessed from QML directly. If the main QML file is
-loaded as a resource, all files specifed as relative paths in QML will also be loaded from
+loaded as a resource, all files specified as relative paths in QML will also be loaded from
the resource system. Using the resource system is completely transparent to the QML layer.
This also means that if the main QML file is not loaded as a resource then files in the resource
system cannot be accessed from QML.