From 60e9eebb0059f8f1e711715ad96fde935eba5003 Mon Sep 17 00:00:00 2001 From: Dakota Walsh Date: Wed, 28 Jul 2021 16:03:15 +1200 Subject: [PATCH] fix typo --- cmd/observation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/observation.go b/cmd/observation.go index 996adce..e80645f 100644 --- a/cmd/observation.go +++ b/cmd/observation.go @@ -61,7 +61,7 @@ func observationThreeHour(client *metservice.Client, ctx context.Context, locati // higher than the measured air temp. For values between 10-14°C a pragmatic // linear roll-off of the wind chill is used. So 12°C at 5km/h wind has a // windChill of 12°C. -// NOTE: The windChill formula listen on the Metservice website is incorrect. +// NOTE: The windChill formula listed on the Metservice website is incorrect. func feelsLike(temp int, humidity int, speed int) float64 { // return whichever is higher of apparentTemp and temp if temp >= 14 { -- 2.45.2