From 5d873db5d558606e89865d3a9cdc9cb13e0a2270 Mon Sep 17 00:00:00 2001 From: olalekan odukoya Date: Sat, 12 Oct 2024 02:57:20 +0100 Subject: [PATCH] fix typo in API key error message --- cmd/apikey/apikey_current.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/apikey/apikey_current.go b/cmd/apikey/apikey_current.go index 4d3d6a14..6e545f88 100644 --- a/cmd/apikey/apikey_current.go +++ b/cmd/apikey/apikey_current.go @@ -17,7 +17,7 @@ var apikeyCurrentCmd = &cobra.Command{ Run: func(cmd *cobra.Command, args []string) { index, err := apiKeyFind(args[0]) if err != nil { - utility.Error("Unable find the API key %s", err.Error()) + utility.Error("Unable to find the API key %s", err.Error()) os.Exit(1) }