aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml/tutorials/extending-qml-advanced/properties/doc
diff options
context:
space:
mode:
authorCristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2023-11-20 15:05:32 +0100
committerCristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2023-11-21 09:29:45 +0100
commitee92bd32094555209172bdc555f0ce1514e49cdf (patch)
treeb3b9392f2788986182adb61b492f8b94486fd86f /examples/qml/tutorials/extending-qml-advanced/properties/doc
parent5935b0f45503eabbd24c7379701b48bb2874a8ac (diff)
doc: remove double white space
Pick-to: 6.6 Change-Id: I68b835bb5fa00d35fe5406deee2acc83c7bac7cb Reviewed-by: Adrian Herrmann <adrian.herrmann@qt.io>
Diffstat (limited to 'examples/qml/tutorials/extending-qml-advanced/properties/doc')
-rw-r--r--examples/qml/tutorials/extending-qml-advanced/properties/doc/properties.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/qml/tutorials/extending-qml-advanced/properties/doc/properties.rst b/examples/qml/tutorials/extending-qml-advanced/properties/doc/properties.rst
index fd0c6d474..9337ad2ab 100644
--- a/examples/qml/tutorials/extending-qml-advanced/properties/doc/properties.rst
+++ b/examples/qml/tutorials/extending-qml-advanced/properties/doc/properties.rst
@@ -75,10 +75,10 @@ The class contains a member to store the celebrant object, and also a
list member storing the Person instances.
In QML, the type of a list properties - and the guests property is a list of
-people - are all of type ListProperty. ListProperty is simple value
-type that contains a set of functions. QML calls these functions
+people - are all of type ListProperty. ListProperty is simple value
+type that contains a set of functions. QML calls these functions
whenever it needs to read from, write to or otherwise interact with
-the list. In addition to concrete lists like the people list used in this
+the list. In addition to concrete lists like the people list used in this
example, the use of QQmlListProperty allows for "virtual lists" and other advanced
scenarios.