summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralistairadamsqt <alistair.adams@qt.io>2017-03-15 02:49:22 -0700
committerjryannel <juergen@ryannel.org>2017-03-15 10:49:22 +0100
commit701392926a53a055c041d6f8c36f447285f8ead4 (patch)
tree67973638834c3d18a67938eb43870d9c9eee044a
parentb583b075038c46ba1ddb1d43a026ddc1db2d98a5 (diff)
downloadqtivi-qface-701392926a53a055c041d6f8c36f447285f8ead4.tar.gz
Update grammar.rst (#25)
Tidy up grammar
-rw-r--r--docs/grammar.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/grammar.rst b/docs/grammar.rst
index c5acd91..b8abb74 100644
--- a/docs/grammar.rst
+++ b/docs/grammar.rst
@@ -2,7 +2,7 @@
QFace Grammar
=============
-QFace (Qt interface language) is an IDL to define an interface. In general it is modeled to define an interface between Qt QML and C++. The QFace syntax is flexible enough also to be used in other context.
+QFace (Qt interface language) is an Interface Description Languge (IDL). While it is primarily designed to define an interface between Qt, QML and C++, it is intended to be flexible enough also to be used in other contexts.
.. code-block:: html
@@ -33,7 +33,7 @@ A QFace document always describes one module. Each document can contain one or m
Module
======
-A module is identified name. A module should be normally a URI where all parts are lowercase (e.g. `entertainment.tuner`). A module can import other modules. This is used to ensure that dependencies are declared inside the QFace file.
+A module is identified name. A module should be normally a URI where all parts are lowercase (e.g. `entertainment.tuner`). A module may import other modules with the primary purpose being to ensure that dependencies are declared inside the QFace file.
Types
-----