diff --git a/cmd/render.go b/cmd/render.go index b618e94..6937f0b 100644 --- a/cmd/render.go +++ b/cmd/render.go @@ -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.")