From 5c1f2fad506a7c33e14a794bb22875df83ec9905 Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Wed, 27 Jul 2022 14:56:36 -0400 Subject: [PATCH] Typo --- cmd/render.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }