Skip to content

Commit 602b4ed

Browse files
Fix typo in parameter description
1 parent 50f5244 commit 602b4ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/token.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func init() {
3030
rootCmd.AddCommand(loginCmd)
3131

3232
loginCmd.Flags().BoolVarP(&isUserToken, "user-token", "u", false, "Whether to login as a user or getting an app access token.")
33-
loginCmd.Flags().StringVarP(&userScopes, "scopes", "s", "", "Space seperated list of scopes to request with your user token.")
33+
loginCmd.Flags().StringVarP(&userScopes, "scopes", "s", "", "Space separated list of scopes to request with your user token.")
3434
loginCmd.Flags().StringVarP(&revokeToken, "revoke", "r", "", "Instead of generating a new token, revoke the one passed to this parameter.")
3535
loginCmd.Flags().StringVar(&overrideClientId, "client-id", "", "Override/manually set client ID for token actions. By default client ID from CLI config will be used.")
3636
loginCmd.Flags().StringVar(&tokenServerIP, "ip", "localhost", "Manually set the IP address to be binded to for the User Token web server.")

0 commit comments

Comments
 (0)