From faa2ce0c6b17eced745be2fcc8cb068923d86e7a Mon Sep 17 00:00:00 2001 From: Parth Gohil <138430690+parthpnx@users.noreply.github.com> Date: Thu, 12 Sep 2024 09:24:56 +0530 Subject: [PATCH] fix: linting errors --- internal/provider/log_anomaly/transform/transform.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/provider/log_anomaly/transform/transform.go b/internal/provider/log_anomaly/transform/transform.go index 6132839..740d227 100644 --- a/internal/provider/log_anomaly/transform/transform.go +++ b/internal/provider/log_anomaly/transform/transform.go @@ -2,7 +2,7 @@ package transform import "fmt" -// ToApiValue returns the evaluation frequency. +// ToAPIValue returns the evaluation frequency. func ToAPIValue(evaluationFrequency string) (string, error) { switch evaluationFrequency { @@ -23,7 +23,7 @@ func ToAPIValue(evaluationFrequency string) (string, error) { } } -// FromApiValue returns the evaluation frequency. +// FromAPIValue returns the evaluation frequency. func FromAPIValue(evaluationFrequency string) (string, error) { switch evaluationFrequency {