kph should be mps

This commit is contained in:
Andrew Scott 2022-08-09 01:18:11 -04:00
parent 2dd8fc36bd
commit 2908823e6c
Signed by: a
GPG key ID: 3EB62D0BBB8DB381

View file

@ -9,7 +9,7 @@ func printWeather(app *Application) {
if app.Config.Units == "imperial" {
unitStr = "Farhenheit/mph"
} else {
unitStr = "Celsius/kph"
unitStr = "Celsius/mps"
}
fmt.Println("\nNote! A value of 0 or 0.00 indicates the data is not available at this time.")
@ -31,7 +31,7 @@ func printHistorical(app *Application) {
if app.Config.Units == "imperial" {
unitStr = "Farhenheit/mph"
} else {
unitStr = "Celsius/kph"
unitStr = "Celsius/mps"
}
fmt.Println("\nNote! A value of 0 or 0.00 indicates the data is not available at this time.")