summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lerner <chris.lerner@qt.io>2024-04-04 10:12:16 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2024-04-04 16:41:23 +0000
commit617f0777ae18f966dd4dc04f3052793d65cc43b4 (patch)
tree6e534876d65dff5a010956a5cb4cce784c852d25
parent968590c264e0a75246c7b84a3a374af6ab7c07e7 (diff)
Correct a typo in Thermostat example6.6
Pick-to: 6.5 Change-Id: Ifcfb7005fb95ad7851e701fd7cbb287f4341f086 Reviewed-by: Axel Spoerl <axel.spoerl@qt.io> (cherry picked from commit 44c9b5162fc13dea1b9bba5145bc41121707526c) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> (cherry picked from commit 9ff47ec54527933ce3d044f14cad72b683ded270)
-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))