doc: fix some typos in .qml files
[profile/ivi/qtdeclarative.git] / examples / quick / modelviews / listview / highlight.qml
index 2dca1f4..452d6c9 100644 (file)
@@ -56,9 +56,9 @@ Rectangle {
             id: wrapper
             width: 200; height: 55
             Column {
-                Text { text: 'Name: ' + name }
-                Text { text: 'Type: ' + type }
-                Text { text: 'Age: ' + age }
+                SmallText { text: 'Name: ' + name }
+                SmallText { text: 'Type: ' + type }
+                SmallText { text: 'Age: ' + age }
             }
             // indent the item if it is the current item
             states: State {
@@ -76,7 +76,8 @@ Rectangle {
         }
     }
 
-    // Define a highlight with customised movement between items.
+//! [0]
+    // Define a highlight with customized movement between items.
     Component {
         id: highlightBar
         Rectangle {
@@ -100,4 +101,5 @@ Rectangle {
         highlight: highlightBar
         highlightFollowsCurrentItem: false
     }
+//! [0]
 }