From 6674ff61e59d68987c569a37a249cc621319fe7d Mon Sep 17 00:00:00 2001 From: Bryan Boreham Date: Wed, 7 Feb 2018 13:39:24 +0000 Subject: [PATCH] Fix incorrect comment --- probe/endpoint/resolver.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/probe/endpoint/resolver.go b/probe/endpoint/resolver.go index 0f816d86e..cbd533d1c 100644 --- a/probe/endpoint/resolver.go +++ b/probe/endpoint/resolver.go @@ -41,8 +41,7 @@ func newReverseResolver() *reverseResolver { } // get the reverse resolution for an IP address if already in the cache, a -// gcache.NotFoundKeyError error otherwise. Note: it returns one of the -// possible names that can be obtained for that IP. +// gcache.NotFoundKeyError error otherwise. func (r *reverseResolver) get(address string) ([]string, error) { val, err := r.cache.Get(address) if hostnames, ok := val.([]string); err == nil && ok {