From 6a389c78ccd826985d6c3eecc12b8ecd08bd9110 Mon Sep 17 00:00:00 2001 From: James Hillyerd Date: Sun, 4 Feb 2024 19:50:02 -0800 Subject: [PATCH] rest/client: fix comment lint error (#465) Signed-off-by: James Hillyerd --- pkg/rest/client/apiv1_client_opts.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/rest/client/apiv1_client_opts.go b/pkg/rest/client/apiv1_client_opts.go index 873db93..5b5b313 100644 --- a/pkg/rest/client/apiv1_client_opts.go +++ b/pkg/rest/client/apiv1_client_opts.go @@ -11,6 +11,7 @@ type options struct { timeout time.Duration } +// Option can apply itself to the private options type. type Option interface { apply(*options) }