summaryrefslogtreecommitdiffstats
path: root/doc/src/declarative/tutorial2.qdoc
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2009-08-19 23:56:12 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2009-08-19 23:56:12 (GMT)
commit8b58eecf83811044edfc28bb652c605ab5446a07 (patch)
tree34602cb46265bc7084f5e2653b58256dd68f00e5 /doc/src/declarative/tutorial2.qdoc
parent21e87b18698c50bcfe0800509563e71c79aae0bb (diff)
downloadQt-8b58eecf83811044edfc28bb652c605ab5446a07.zip
Qt-8b58eecf83811044edfc28bb652c605ab5446a07.tar.gz
Qt-8b58eecf83811044edfc28bb652c605ab5446a07.tar.bz2
Documentation fixes
Diffstat (limited to 'doc/src/declarative/tutorial2.qdoc')
-rw-r--r--doc/src/declarative/tutorial2.qdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/declarative/tutorial2.qdoc b/doc/src/declarative/tutorial2.qdoc
index 410d119..9c1e98b 100644
--- a/doc/src/declarative/tutorial2.qdoc
+++ b/doc/src/declarative/tutorial2.qdoc
@@ -1,4 +1,4 @@
-/*!
+/*!
\page tutorial2.html
\title Tutorial 2 - Some colors
\target tutorial2
@@ -74,7 +74,7 @@ Item {
}
\endcode
-The root element of our component is an \c Item. It is the most basic 'Fx' element in Qml and is often used as a container for other elements.
+The root element of our component is an \c Item. It is the most basic element in QML and is often used as a container for other elements.
\code
property var color
@@ -93,7 +93,7 @@ Our cell component is basically a colored rectangle.
The \c anchors.fill property is a convenient way to set the size of an element. In this case the \c Rect will have the same size as its parent.
-We bind the \c color property of this \c Rect to the color property of our component.
+We bind the \c color property of this \c Rectangle to the color property of our component.
\code
MouseRegion {