summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/qtqml.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/qtqml.rst b/docs/qtqml.rst
index e7e1ae1..2c2720d 100644
--- a/docs/qtqml.rst
+++ b/docs/qtqml.rst
@@ -2,7 +2,7 @@
Qt QML Code Generator
=====================
-The Qt QML Code generator creates a pure QML implementation of the provided QFace interface files. From the QML perspective it is API compatible. This means an HMI written in QML can be run against plugins generated from the QtCPP code genrator and QtQML code generator.
+The Qt QML Code generator creates a pure QML implementation of the provided QFace interface files. From the QML perspective it is API compatible. This means an HMI written in QML can be run against plugins generated from the QtCPP code generator and QtQML code generator.
This allows developers to start early with an QML only implementation and later switch to an QtCPP based implementation, without changing the HMI code.
@@ -10,9 +10,9 @@ This allows developers to start early with an QML only implementation and later
As the HMI is limited to the API there might still be differences in behavior of the two implementations. This is in the nature of APIs and might lead to different result.
-For each module the genrator creates a module JS file, which contains the enums and factory methods for the structure. A structure is in the pure QML implementation just a JS object with correct attributes set.
+For each module the generator creates a module JS file, which contains the enums and factory methods for the structure. A structure is in the pure QML implementation just a JS object with correct attributes set.
-The interfaces are generates as QtObject types and contain the typical properties, operations and signals.
+The interfaces are generated as QtObject types and contain the typical properties, operations and signals.
.. rubric:: Code Generation