aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@qt.io>2021-08-25 14:36:08 +0200
committerTopi Reinio <topi.reinio@qt.io>2021-08-31 09:21:30 +0200
commit13c5c8e09e2a91f3675ef2da93d25912e1f01b13 (patch)
tree80c094f13c62cf5b2321676e7671db0bbf3c63f7 /src/quick/doc
parent9cbf4d2cc85723dadadadb5fe1ade9719dfeb2a6 (diff)
Doc: Fix remaining documentation warnings
* Refer to correct types in Window QML type docs. * Fix link target for 'Required properties'. * Fix other minor issues. Pick-to: 6.2 Task-number: QTBUG-95860 Change-Id: Icc2819a18ad8cfc44d39f13b22c595ed7b2f0806 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'src/quick/doc')
-rw-r--r--src/quick/doc/src/guidelines/qtquick-bestpractices.qdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quick/doc/src/guidelines/qtquick-bestpractices.qdoc b/src/quick/doc/src/guidelines/qtquick-bestpractices.qdoc
index b45bf6b386..e52b09aa97 100644
--- a/src/quick/doc/src/guidelines/qtquick-bestpractices.qdoc
+++ b/src/quick/doc/src/guidelines/qtquick-bestpractices.qdoc
@@ -195,7 +195,7 @@ maintenance pain-free, we should strive to keep C++ types unaware of QML as
much as possible. This can be achieved by "pushing" references to C++ types
into QML.
-This can be done by using \l {Required Property}{required properties} and
+This can be done by using \l {Required properties}{required properties} and
setting them via \l QQmlApplicationEngine::setInitialProperties. It is also
possible to create one or multiple \l {QML_SINGLETON}{singletons} which will
return all the data the C++ side wants to provide to QML.