From 0f18af6599a9e906c54f9c368267fb77d2e0766e Mon Sep 17 00:00:00 2001 From: Srinandan Sridhar <13950006+srinandan@users.noreply.github.com> Date: Tue, 17 Oct 2023 14:51:00 -0700 Subject: [PATCH] fix typo in cmd help (#320) --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index 3069720fa..eee653235 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -145,7 +145,7 @@ func init() { false, "Metadata OAuth2 access token") RootCmd.PersistentFlags().BoolVarP(&defaultToken, "default-token", "", - false, "Use Google defalt application credentials access token") + false, "Use Google default application credentials access token") RootCmd.AddCommand(apis.Cmd) RootCmd.AddCommand(org.Cmd)