summaryrefslogtreecommitdiff
path: root/src/quick/doc/src/appdevguide/quickstart/basics.qdoc
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/doc/src/appdevguide/quickstart/basics.qdoc')
-rw-r--r--src/quick/doc/src/appdevguide/quickstart/basics.qdoc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/quick/doc/src/appdevguide/quickstart/basics.qdoc b/src/quick/doc/src/appdevguide/quickstart/basics.qdoc
index 7f63d532ea..5f9d5c0eb9 100644
--- a/src/quick/doc/src/appdevguide/quickstart/basics.qdoc
+++ b/src/quick/doc/src/appdevguide/quickstart/basics.qdoc
@@ -29,7 +29,7 @@
\title Quick Start Guide - QML Basics
\brief Basic QML application development examples
-\section1 Creating A QML Document
+\section1 Creating a QML Document
A QML document defines a hierarchy of objects with a highly-readable,
structured layout. Every QML document consists of two parts: an imports
@@ -37,7 +37,7 @@ section and an object declaration section. The types and functionality most
common to user interfaces are provided in the \l{Qt Quick Module}{QtQuick}
import.
-\section2 Importing And Using The QtQuick Module
+\section2 Importing and Using the QtQuick Module
To use the \l{Qt Quick Module}{QtQuick} module, a QML document needs to
import it. The import syntax looks like this:
@@ -49,7 +49,7 @@ import QtQuick 2.0
The types and functionality that \l{Qt Quick Module}{QtQuick} provides can now
be used in the QML document!
-\section2 Defining An Object Hierarchy
+\section2 Defining an Object Hierarchy
The object declaration in a QML document defines what will be displayed in the
visual scene. \l{Qt Quick Module}{QtQuick} provides the basic building blocks
@@ -77,7 +77,7 @@ which has a child \l Text object. The \c parent of the \l Text object is
automatically set to the \l Rectangle, and similarly, the \l Text object is
added to the \c children property of the \l Rectangle object, by QML.
-\section2 Putting It Together
+\section2 Putting it Together
The \l Rectangle and \l Text types used in the above example are both provided
by the \l{Qt Quick Module}{QtQuick} import. To use them, we need to import
@@ -101,7 +101,7 @@ Rectangle {
If we save that document as "HelloWorld.qml" we can load and display it.
-\section1 Loading And Displaying The QML Document
+\section1 Loading and Displaying the QML Document
To display the graphical scene defined by the QML document, it may be loaded
with the \l{Protoyping with qmlscene}{qmlscene} tool. The