diff --git a/cmd/render.go b/cmd/render.go index 7da9361..a17e85f 100644 --- a/cmd/render.go +++ b/cmd/render.go @@ -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) }