diff options
author | Nick White <git@njw.name> | 2018-03-21 21:14:16 +0000 |
---|---|---|
committer | Nick White <git@njw.name> | 2018-03-21 21:14:43 +0000 |
commit | 721984f06ee52484558a70f03a7859236fdef512 (patch) | |
tree | ec2f54e5caa29165655c39cb33769ce751a585a2 | |
parent | 91449c357ee5ab4b04c06c64cf06a74663287f79 (diff) | |
download | weather-721984f06ee52484558a70f03a7859236fdef512.tar.bz2 weather-721984f06ee52484558a70f03a7859236fdef512.zip |
Fix up output slightly
-rw-r--r-- | weather.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) } |