From 23971de28e82e4ba4699b7dd8d6012be5724fb11 Mon Sep 17 00:00:00 2001 From: Matthias Kestenholz Date: Wed, 7 Aug 2024 17:21:12 +0200 Subject: [PATCH] Fix a typo in whoami.go --- auth/whoami.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/whoami.go b/auth/whoami.go index 97501c6..b796186 100644 --- a/auth/whoami.go +++ b/auth/whoami.go @@ -33,7 +33,7 @@ func (s *WhoAmICmd) Run(ctx context.Context, client *api.Client) error { } func printUserInfo(userInfo *api.UserInfo, cfg *Config) { - fmt.Printf("You are currenlty logged in the with the following account: %q\n", userInfo.User) + fmt.Printf("You are currently logged in the with the following account: %q\n", userInfo.User) fmt.Printf("Your current organization: %q\n", cfg.Organization)