From 5c995d85e96223b1b6f508339d8c301492e9eb99 Mon Sep 17 00:00:00 2001 From: David Debeau Date: Mon, 19 Aug 2024 14:09:23 -0500 Subject: [PATCH] Fix lint error --- internal/provider/helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/provider/helpers.go b/internal/provider/helpers.go index a5e89a6..cb1c87f 100644 --- a/internal/provider/helpers.go +++ b/internal/provider/helpers.go @@ -23,7 +23,7 @@ func isValidURL(u string) bool { return err == nil } -// Subtract two slices, c = a - b +// Subtract two slices, c = a - b. func subtractStringSlice(a []string, b []string) []string { bMap := make(map[string]struct{}) for _, v := range b {