summaryrefslogtreecommitdiffstats
path: root/doc/src/declarative/tutorial2.qdoc
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2009-11-09 07:02:58 (GMT)
committerMartin Jones <martin.jones@nokia.com>2009-11-09 07:02:58 (GMT)
commit583f69b1e14e17aca6e17214004f172e7cdc7084 (patch)
treed567340193253b3120702bf1d8d9f24d23592cbb /doc/src/declarative/tutorial2.qdoc
parentdab4c1b3089c57e8dba778e6ee6fbbd111b21f8e (diff)
downloadQt-583f69b1e14e17aca6e17214004f172e7cdc7084.zip
Qt-583f69b1e14e17aca6e17214004f172e7cdc7084.tar.gz
Qt-583f69b1e14e17aca6e17214004f172e7cdc7084.tar.bz2
Fix doc link.
Diffstat (limited to 'doc/src/declarative/tutorial2.qdoc')
-rw-r--r--doc/src/declarative/tutorial2.qdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/declarative/tutorial2.qdoc b/doc/src/declarative/tutorial2.qdoc
index b198bc5..dd0d428 100644
--- a/doc/src/declarative/tutorial2.qdoc
+++ b/doc/src/declarative/tutorial2.qdoc
@@ -10,7 +10,7 @@ Our color picker is made of six cells with different colors.
To avoid writing the same code multiple times, we first create a new \c Cell component.
A component provides a way of defining a new type that we can re-use in other QML files.
A QML component is like a black-box and interacts with the outside world through properties, signals and slots and is generally
-defined in its own QML file (for more details, see \l components).
+defined in its own QML file (for more details, see \l {Defining new Components}).
The component's filename must always start with a capital letter.
Here is the QML code for \c Cell.qml: