Skip to content

Commit

Permalink
Update display
Browse files Browse the repository at this point in the history
  • Loading branch information
eoin-barr committed Dec 5, 2022
1 parent 18c6eea commit 602eb9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func formatAll(result types.WeatherRes, city string) string {
"🌤 Description:\t" + cases.Title(language.English, cases.Compact).String(result.Weather[0].Description) + "\n" +
"🌡 Temperature:\t" + strconv.FormatFloat(temp, 'f', 2, 32) + " °C" + "\n" +
"💧 Dew point:\t\t" + strconv.FormatFloat(dewPoint, 'f', 2, 32) + " °C" + "\n" +
"💁‍♀️ Temp Feels Like:\t" + strconv.FormatFloat(tempFeelsLike, 'f', 2, 32) + " °C" + "\n" +
"💁‍♀️ Temp Feels Like:\t" + strconv.FormatFloat(tempFeelsLike, 'f', 2, 32) + " °C" + "\n" +
"🔥 Temperature Max:\t" + strconv.FormatFloat(tempMax, 'f', 2, 32) + " °C" + "\n" +
"🧊 Temperature Min:\t" + strconv.FormatFloat(tempMin, 'f', 2, 32) + " °C" + "\n" +
"🌊 Pressure:\t\t" + strconv.FormatInt(int64(result.Main.Pressure), 10) + " hPa" + "\n" +
Expand Down

0 comments on commit 602eb9b

Please sign in to comment.