Skip to content

Commit

Permalink
Adjust missing descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
joaopalet committed Feb 5, 2024
1 parent f15ae2d commit c2fb638
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/stackit_project.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ stackit project [flags]
* [stackit](./stackit.md) - Manage STACKIT resources using the command line
* [stackit project create](./stackit_project_create.md) - Creates a STACKIT project
* [stackit project delete](./stackit_project_delete.md) - Deletes a STACKIT project
* [stackit project describe](./stackit_project_describe.md) - Show details of a STACKIT project
* [stackit project describe](./stackit_project_describe.md) - Shows details of a STACKIT project
* [stackit project list](./stackit_project_list.md) - Lists STACKIT projects
* [stackit project member](./stackit_project_member.md) - Provides functionality regarding project members
* [stackit project role](./stackit_project_role.md) - Provides functionality regarding project roles
Expand Down
4 changes: 2 additions & 2 deletions docs/stackit_project_describe.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## stackit project describe

Show details of a STACKIT project
Shows details of a STACKIT project

### Synopsis

Show details of a STACKIT project.
Shows details of a STACKIT project.

```
stackit project describe [flags]
Expand Down
2 changes: 1 addition & 1 deletion docs/stackit_service-account.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ stackit service-account [flags]
* [stackit](./stackit.md) - Manage STACKIT resources using the command line
* [stackit service-account create](./stackit_service-account_create.md) - Creates a service account
* [stackit service-account delete](./stackit_service-account_delete.md) - Deletes a service account
* [stackit service-account get-jwks](./stackit_service-account_get-jwks.md) - Gets the JWKS for a service account
* [stackit service-account get-jwks](./stackit_service-account_get-jwks.md) - Shows the JWKS for a service account
* [stackit service-account key](./stackit_service-account_key.md) - Provides functionality regarding service account keys
* [stackit service-account list](./stackit_service-account_list.md) - Lists all service accounts
* [stackit service-account token](./stackit_service-account_token.md) - Provides functionality regarding service account tokens
Expand Down
4 changes: 2 additions & 2 deletions docs/stackit_service-account_get-jwks.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## stackit service-account get-jwks

Gets the JWKS for a service account
Shows the JWKS for a service account

### Synopsis

Gets the JSON Web Key set (JWKS) for a service account. Only JSON output is supported.
Shows the JSON Web Key set (JWKS) for a service account. Only JSON output is supported.

```
stackit service-account get-jwks EMAIL [flags]
Expand Down
4 changes: 2 additions & 2 deletions internal/cmd/project/describe/describe.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ type inputModel struct {
func NewCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "describe",
Short: "Show details of a STACKIT project",
Long: "Show details of a STACKIT project.",
Short: "Shows details of a STACKIT project",
Long: "Shows details of a STACKIT project.",
Args: args.NoArgs,
Example: examples.Build(
examples.NewExample(
Expand Down
4 changes: 2 additions & 2 deletions internal/cmd/service-account/get-jwks/get_jwks.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ type inputModel struct {
func NewCmd() *cobra.Command {
cmd := &cobra.Command{
Use: fmt.Sprintf("get-jwks %s", emailArg),
Short: "Gets the JWKS for a service account",
Long: "Gets the JSON Web Key set (JWKS) for a service account. Only JSON output is supported.",
Short: "Shows the JWKS for a service account",
Long: "Shows the JSON Web Key set (JWKS) for a service account. Only JSON output is supported.",
Args: args.SingleArg(emailArg, nil),
Example: examples.Build(
examples.NewExample(
Expand Down

0 comments on commit c2fb638

Please sign in to comment.