From 219710bb765c4328ade376e72c8ac4dd9fe849f4 Mon Sep 17 00:00:00 2001 From: pancho horrillo Date: Fri, 4 Oct 2019 06:01:56 +0200 Subject: [PATCH] Fix documentation comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Héctor Hurtado --- internal/client/route_list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/client/route_list.go b/internal/client/route_list.go index 422afd1..bd08260 100644 --- a/internal/client/route_list.go +++ b/internal/client/route_list.go @@ -6,7 +6,7 @@ import ( "github.com/BBVA/kapow/internal/http" ) -// ListRoutes list the routes registered on the kapow! instance +// ListRoutes queries the kapow! instance for the routes that are registered func ListRoutes(host string, w io.Writer) error { url := host + "/routes/" return http.Get(url, "", nil, w)