aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/declarative/qtquick-intro.qdoc
diff options
context:
space:
mode:
authorJerome Pasion <jerome.pasion@nokia.com>2011-10-03 10:57:39 +0200
committerQt by Nokia <qt-info@nokia.com>2011-10-04 08:32:33 +0200
commiteec55d54c99b28953476e452281a8c58bfc4495b (patch)
tree14fa45bf859fc182729504a6338d17962a937bda /doc/src/declarative/qtquick-intro.qdoc
parent1780033cb259bbb166fe9b4b14c92829a8e1800e (diff)
Doc: Converting the overviews' \e commands to \i commands.
\e commands are deprecated and are only supported through an alias. We should use the official command and not the deprecated command. Change-Id: Icf88b9cda673f436dd855f22960112d0a37c74eb Reviewed-on: http://codereview.qt-project.org/5918 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Bea Lam <bea.lam@nokia.com> Reviewed-by: Alan Alpert <alan.alpert@nokia.com>
Diffstat (limited to 'doc/src/declarative/qtquick-intro.qdoc')
-rw-r--r--doc/src/declarative/qtquick-intro.qdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/declarative/qtquick-intro.qdoc b/doc/src/declarative/qtquick-intro.qdoc
index 4cd5db3867..8083b8a0ef 100644
--- a/doc/src/declarative/qtquick-intro.qdoc
+++ b/doc/src/declarative/qtquick-intro.qdoc
@@ -44,7 +44,7 @@ environment (IDE) introduces tools for developing Qt Quick applications.
\section1 The QML Language
QML is a high level, scripted language. Its commands, more correctly
-\e elements, leverage the power and efficiency of the Qt libraries to make easy
+\i elements, leverage the power and efficiency of the Qt libraries to make easy
to use commands that perform intuitive functions. Drawing a rectangle,
displaying an image, and application events -- all are possible with declarative
programming.
@@ -53,7 +53,7 @@ The language also allows more flexibility of these commands by using
\l{About JavaScript}{JavaScript} to implement the high level user interface
logic.
-A QML element usually has various \e properties that help define the element.
+A QML element usually has various \i properties that help define the element.
For example, if we created an element called Circle then the radius of the
circle would be a property. Building user interfaces by importing these elements
is one of the great feature of QML and Qt Quick.