From a017daafc8d3676b2c9e09616eb8f92a93eb7e7f Mon Sep 17 00:00:00 2001 From: John Eikenberry Date: Wed, 1 Sep 2021 11:28:44 -0700 Subject: [PATCH] fix godoc comment for Namespaces client method Namespaces method godoc has same sentence as Operator method. Presumably a cut-n-paste error. Fix that. --- api/namespace.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/namespace.go b/api/namespace.go index 213cd8cf4..bfc5aff17 100644 --- a/api/namespace.go +++ b/api/namespace.go @@ -53,7 +53,7 @@ type Namespaces struct { c *Client } -// Operator returns a handle to the operator endpoints. +// Namespaces returns a handle to the namespaces endpoints. func (c *Client) Namespaces() *Namespaces { return &Namespaces{c} }