Skip to content

Commit c9da895

Browse files
committed
Update docs
1 parent 2cab8b4 commit c9da895

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

docs/stackit_beta_affinity-group.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ stackit beta affinity-group [flags]
3030
### SEE ALSO
3131

3232
* [stackit beta](./stackit_beta.md) - Contains beta STACKIT CLI commands
33-
* [stackit beta affinity-group create](./stackit_beta_affinity-group_create.md) - Create affinity groups
34-
* [stackit beta affinity-group delete](./stackit_beta_affinity-group_delete.md) - Delete affinity group
35-
* [stackit beta affinity-group describe](./stackit_beta_affinity-group_describe.md) - Describes affinity group
33+
* [stackit beta affinity-group create](./stackit_beta_affinity-group_create.md) - Creates an affinity groups
34+
* [stackit beta affinity-group delete](./stackit_beta_affinity-group_delete.md) - Deletes an affinity group
35+
* [stackit beta affinity-group describe](./stackit_beta_affinity-group_describe.md) - Show details of an affinity group
3636
* [stackit beta affinity-group list](./stackit_beta_affinity-group_list.md) - Lists affinity groups
3737

docs/stackit_beta_affinity-group_create.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## stackit beta affinity-group create
22

3-
Create affinity groups
3+
Creates an affinity groups
44

55
### Synopsis
66

7-
Create affinity groups.
7+
Creates an affinity groups.
88

99
```
1010
stackit beta affinity-group create [flags]

docs/stackit_beta_affinity-group_delete.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## stackit beta affinity-group delete
22

3-
Delete affinity group
3+
Deletes an affinity group
44

55
### Synopsis
66

7-
Delete affinity group.
7+
Deletes an affinity group.
88

99
```
1010
stackit beta affinity-group delete AFFINITY_GROUP [flags]

docs/stackit_beta_affinity-group_describe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## stackit beta affinity-group describe
22

3-
Describes affinity group
3+
Show details of an affinity group
44

55
### Synopsis
66

7-
Describes affinity group by it's ID.
7+
Show details of an affinity group.
88

99
```
1010
stackit beta affinity-group describe AFFINITY_GROUP_ID [flags]

docs/stackit_beta_affinity-group_list.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ stackit beta affinity-group list [flags]
1313
### Examples
1414

1515
```
16-
List all affinity groups
16+
Lists all affinity groups
1717
$ stackit beta affinity-group list
1818
19-
List the first 5 affinity groups
19+
Lists up to 10 affinity groups
2020
$ stackit beta affinity-group list --limit=10
2121
```
2222

internal/cmd/beta/affinity-groups/create/create.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ type inputModel struct {
3232
func NewCmd(p *print.Printer) *cobra.Command {
3333
cmd := &cobra.Command{
3434
Use: "create",
35-
Short: "Create affinity groups",
36-
Long: `Create affinity groups.`,
35+
Short: "Creates an affinity groups",
36+
Long: `Creates an affinity groups.`,
3737
Args: args.NoArgs,
3838
Example: examples.Build(
3939
examples.NewExample(

internal/cmd/beta/affinity-groups/delete/delete.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ const (
2929
func NewCmd(p *print.Printer) *cobra.Command {
3030
cmd := &cobra.Command{
3131
Use: fmt.Sprintf("delete %s", affinityGroupIdArg),
32-
Short: "Delete affinity group",
33-
Long: `Delete affinity group.`,
32+
Short: "Deletes an affinity group",
33+
Long: `Deletes an affinity group.`,
3434
Args: args.SingleArg(affinityGroupIdArg, utils.ValidateUUID),
3535
Example: examples.Build(
3636
examples.NewExample(

internal/cmd/beta/affinity-groups/describe/describe.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ const (
3030
func NewCmd(p *print.Printer) *cobra.Command {
3131
cmd := &cobra.Command{
3232
Use: fmt.Sprintf("describe %s", affinityGroupId),
33-
Short: "Describes affinity group",
34-
Long: `Describes affinity group by it's ID.`,
33+
Short: "Show details of an affinity group",
34+
Long: `Show details of an affinity group.`,
3535
Args: args.SingleArg(affinityGroupId, utils.ValidateUUID),
3636
Example: examples.Build(
3737
examples.NewExample(

internal/cmd/beta/affinity-groups/list/list.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ func NewCmd(p *print.Printer) *cobra.Command {
3535
Args: args.NoArgs,
3636
Example: examples.Build(
3737
examples.NewExample(
38-
"List all affinity groups",
38+
"Lists all affinity groups",
3939
"$ stackit beta affinity-group list",
4040
),
4141
examples.NewExample(
42-
"List the first 5 affinity groups",
42+
"Lists up to 10 affinity groups",
4343
"$ stackit beta affinity-group list --limit=10",
4444
),
4545
),

0 commit comments

Comments
 (0)