summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lerner <chris.lerner@qt.io>2024-04-04 10:12:16 +0200
committerChris René Lerner <chris.lerner@qt.io>2024-04-04 10:06:30 +0000
commit44c9b5162fc13dea1b9bba5145bc41121707526c (patch)
tree076c3089840b6342fd2752a2b918317dee481e07
parent6dee263d1994eef86129135499c220b1aed04399 (diff)
Correct a typo in Thermostat example
Pick-to: 6.7 6.6 6.5 Change-Id: Ifcfb7005fb95ad7851e701fd7cbb287f4341f086 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io>
-rw-r--r--examples/demos/thermostat/content/TemperatureInfoForm.ui.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/demos/thermostat/content/TemperatureInfoForm.ui.qml b/examples/demos/thermostat/content/TemperatureInfoForm.ui.qml
index 9f561ba89..86ef47956 100644
--- a/examples/demos/thermostat/content/TemperatureInfoForm.ui.qml
+++ b/examples/demos/thermostat/content/TemperatureInfoForm.ui.qml
@@ -18,7 +18,7 @@ ThermostatInfo {
title: qsTr("Temperature")
leftIcon: "images/temperature"
- topLabel: qsTr("Avarage: %1°C".arg(avgTempValue))
+ topLabel: qsTr("Average: %1°C".arg(avgTempValue))
bottomLeftLabel: qsTr("Minimum: %1°C".arg(minTempValue))
bottomLeftIcon: "images/minTemp.svg"
bottomRightLabel: qsTr("Maximum: %1°C".arg(maxTempValue))