summaryrefslogtreecommitdiff
path: root/weather.go
diff options
context:
space:
mode:
Diffstat (limited to 'weather.go')
-rw-r--r--weather.go2
1 files changed, 1 insertions, 1 deletions
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)
}