From 2908823e6c196e38caa3d36267f4ac68875d003c Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Tue, 9 Aug 2022 01:18:11 -0400 Subject: [PATCH] kph should be mps --- cmd/render.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.")