From e2a0d820dd1c1a994293a15335d3c0ce4fe415c8 Mon Sep 17 00:00:00 2001 From: Dhia Ayachi Date: Thu, 29 Aug 2024 11:06:36 -0400 Subject: [PATCH] gofmt'd --- provider/packet/packet_discover.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/provider/packet/packet_discover.go b/provider/packet/packet_discover.go index 28569705..83c2accf 100644 --- a/provider/packet/packet_discover.go +++ b/provider/packet/packet_discover.go @@ -136,7 +136,7 @@ func Include(vs []string, t string) bool { return Index(vs, t) >= 0 } -//Any returns true if one of the strings in the slice satisfies the predicate f. +// Any returns true if one of the strings in the slice satisfies the predicate f. func Any(vs []string, f func(string) bool) bool { for _, v := range vs { if f(v) {