summaryrefslogtreecommitdiffstats
path: root/doc/src
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2010-04-12 01:45:11 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2010-04-12 01:45:11 (GMT)
commit095695cb15f595a8dd91a6f76418a51a195d9fb7 (patch)
tree35fb1b5c518c1c93e2703ba2877363f53302c678 /doc/src
parentbb491c3b9ee2034e14d05a74f3ff926ffd2cd39b (diff)
downloadQt-095695cb15f595a8dd91a6f76418a51a195d9fb7.zip
Qt-095695cb15f595a8dd91a6f76418a51a195d9fb7.tar.gz
Qt-095695cb15f595a8dd91a6f76418a51a195d9fb7.tar.bz2
doc fixes
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/declarative/codingconventions.qdoc4
-rw-r--r--doc/src/snippets/declarative/codingconventions/lists.qml2
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 }
}