Skip to content

Commit

Permalink
fix: cli example breaking docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jmorganca committed Apr 8, 2022
1 parent 4a18611 commit 06cae72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/reference/cli-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ Create a machine identity with NAME or a user identity with EMAIL.
NAME must only contain alphanumeric characters ('a-z', 'A-Z', '0-9') or the
special characters '-', '_', or '/' and has a maximum length of 256 characters.

EMAIL must contain a valid email address in the form of "<local>@<domain>".
EMAIL must contain a valid email address in the form of "local@domain".


```
Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/identities.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func newIdentitiesAddCmd() *cobra.Command {
NAME must only contain alphanumeric characters ('a-z', 'A-Z', '0-9') or the
special characters '-', '_', or '/' and has a maximum length of 256 characters.
EMAIL must contain a valid email address in the form of "<local>@<domain>".
EMAIL must contain a valid email address in the form of "local@domain".
`,
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
Expand Down

0 comments on commit 06cae72

Please sign in to comment.