summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/reusablecomponents/application.qml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/snippets/declarative/reusablecomponents/application.qml')
-rw-r--r--doc/src/snippets/declarative/reusablecomponents/application.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/snippets/declarative/reusablecomponents/application.qml b/doc/src/snippets/declarative/reusablecomponents/application.qml
index 094134f..a09b276 100644
--- a/doc/src/snippets/declarative/reusablecomponents/application.qml
+++ b/doc/src/snippets/declarative/reusablecomponents/application.qml
@@ -45,11 +45,11 @@ Rectangle {
color: "lightgrey"
Column {
- anchors.centerIn: parent
- spacing: 15
+ anchors.centerIn: parent
+ spacing: 15
Button {}
- Button {text: "Click Me Too!"}
- Button {text: "Click Me Three!"}
+ Button {text: "Me Too!"}
+ Button {text: "Me Three!"}
}
}
//! [document]