From 721984f06ee52484558a70f03a7859236fdef512 Mon Sep 17 00:00:00 2001 From: Nick White Date: Wed, 21 Mar 2018 21:14:16 +0000 Subject: Fix up output slightly --- weather.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weather.go b/weather.go index be227cb..eed74d9 100644 --- a/weather.go +++ b/weather.go @@ -93,5 +93,5 @@ func main() { } func prettyWeather(t string, w WeatherParams) { - fmt.Printf("%s Type: %2d, Temp: %4.1f°C, Rain: %2d%%, Wind: %2.1fkph\n", t, w.WT, w.T, w.PP, w.WS) + fmt.Printf("%s Type: %2d, Temp: %4.1f°C, Rain: %2d%%, Wind: %2.1fm/s\n", t, w.WT, w.T, w.PP, w.WS) } -- cgit v1.2.3