Correcting Celcius to Celsius

This commit is contained in:
Applevangelist
2022-03-26 14:42:36 +01:00
parent 6546c27cf5
commit 48f9d808cf
5 changed files with 6 additions and 6 deletions

View File

@@ -932,7 +932,7 @@ do -- COORDINATE
if Settings:IsMetric() then
return string.format( " %-2.2f °C", DegreesCelcius )
else
return string.format( " %-2.2f °F", UTILS.CelciusToFarenheit( DegreesCelcius ) )
return string.format( " %-2.2f °F", UTILS.CelsiusToFarenheit( DegreesCelcius ) )
end
else
return " no temperature"