diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2010-04-12 01:45:11 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2010-04-12 01:45:11 (GMT) |
commit | 095695cb15f595a8dd91a6f76418a51a195d9fb7 (patch) | |
tree | 35fb1b5c518c1c93e2703ba2877363f53302c678 /doc | |
parent | bb491c3b9ee2034e14d05a74f3ff926ffd2cd39b (diff) | |
download | Qt-095695cb15f595a8dd91a6f76418a51a195d9fb7.zip Qt-095695cb15f595a8dd91a6f76418a51a195d9fb7.tar.gz Qt-095695cb15f595a8dd91a6f76418a51a195d9fb7.tar.bz2 |
doc fixes
Diffstat (limited to 'doc')
-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 } } |