From e3fa7280ad8bcb478aa5ce708b356bbe8dcf5e9c Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Tue, 21 Mar 2023 16:53:03 +0100 Subject: [PATCH] cli/command: ElectAuthServer: fix deprecation comment The comment was not formatted correctly, and because of that not picked up as being deprecated. updates b4ca1c7368daeead400fcc1b8f2d61951a0d9d1e Signed-off-by: Sebastiaan van Stijn --- cli/command/registry.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cli/command/registry.go b/cli/command/registry.go index 94b0c4171a..9958b7c0f8 100644 --- a/cli/command/registry.go +++ b/cli/command/registry.go @@ -21,8 +21,9 @@ import ( "github.com/pkg/errors" ) -// ElectAuthServer returns the default registry to use -// Deprecated: use registry.IndexServer instead +// ElectAuthServer returns the default registry to use. +// +// Deprecated: use [registry.IndexServer] instead. func ElectAuthServer(_ context.Context, _ Cli) string { return registry.IndexServer }