diff options
-rw-r--r-- | doc/src/declarative/codingconventions.qdoc | 4 | ||||
-rw-r--r-- | doc/src/snippets/declarative/codingconventions/lists.qml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/declarative/codingconventions.qdoc b/doc/src/declarative/codingconventions.qdoc index ad2480f..e1e7871 100644 --- a/doc/src/declarative/codingconventions.qdoc +++ b/doc/src/declarative/codingconventions.qdoc @@ -64,7 +64,7 @@ Through our documentation and examples, QML objects are always structured in the \o transitions \endlist -For better lisibility, we separate these different parts with an empty line. +For better readability, we separate these different parts with an empty line. For example, a hypothetical \e photo QML object would look like this: @@ -75,7 +75,7 @@ For example, a hypothetical \e photo QML object would look like this: \section1 Grouped properties If using multiple properties from a group of properties, -we use the \e {group notation} rather than the \e {dot notation} to improve lisibility. +we use the \e {group notation} rather than the \e {dot notation} to improve readability. For example, this: diff --git a/doc/src/snippets/declarative/codingconventions/lists.qml b/doc/src/snippets/declarative/codingconventions/lists.qml index a08b61c..b8cc8a3 100644 --- a/doc/src/snippets/declarative/codingconventions/lists.qml +++ b/doc/src/snippets/declarative/codingconventions/lists.qml @@ -13,7 +13,7 @@ states: [ } Item { //! [1] - states: State { +states: State { name: "open" PropertyChanges { target: container; width: 200 } } |