diff options
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -308,7 +308,7 @@ func main() { desc = fmt.Sprintf("%d", w.weathertype) } fmt.Printf("%18s, Temp: %4.1f°C, ", desc, w.temperatureDegC) - fmt.Printf("Rain: %2d%%, Wind: %4.1fmph\n", w.precipitationPerc, w.windspeedMph) + fmt.Printf("Rain: %2d%%, Wind: %4.1fmph, Gust: %4.1fmph\n", w.precipitationPerc, w.windspeedMph, w.windgustMph) if *verbose { fmt.Printf("%+v\n\n", w) } |