This commit is contained in:
Andrew Scott 2022-07-27 14:56:36 -04:00
parent 47beff4da5
commit 5c1f2fad50
Signed by: a
GPG key ID: 3EB62D0BBB8DB381

View file

@ -19,7 +19,7 @@ func printWeather(app *application) {
fmt.Printf("High: %.2f\n", app.Forecast.Main.HighTemp)
fmt.Printf("Low: %.2f\n", app.Forecast.Main.LowTemp)
fmt.Printf("Pressure (hPa): %d\n", app.Forecast.Main.Pressure)
fmt.Printf("Humidty (%%): %d\n", app.Forecast.Main.Humidity)
fmt.Printf("Humidity (%%): %d\n", app.Forecast.Main.Humidity)
fmt.Printf("Wind speed: %.2f\n", app.Forecast.Wind.Speed)
fmt.Printf("Gust: %.2f\n", app.Forecast.Wind.Gust)
}