Skip to content

Commit 2ec44c4

Browse files
committed
fix typo
1 parent 25e9c9f commit 2ec44c4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/stackit_beta_volume_create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ stackit beta volume create [flags]
3232
--availability-zone string Availability zone
3333
--description string Volume description
3434
-h, --help Help for "stackit beta volume create"
35-
--labels stringToString Labels are key-value string pairs which can be attached to a volume. A label can be provided with the format key=value. To provide a list of labels, key=value pairs must be seperated by commas(,) e.g. --labels key=value,foo=bar. (default [])
35+
--labels stringToString Labels are key-value string pairs which can be attached to a volume. A label can be provided with the format key=value. To provide a list of labels, key=value pairs must be separated by commas(,) e.g. --labels key=value,foo=bar. (default [])
3636
-n, --name string Volume name
3737
--performance-class string Performance class
3838
--size int Volume size (GB). Either 'size' or the 'source-id' and 'source-type' flags must be given

docs/stackit_beta_volume_update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ stackit beta volume update [flags]
2828
```
2929
--description string Volume description
3030
-h, --help Help for "stackit beta volume update"
31-
--labels stringToString Labels are key-value string pairs which can be attached to a volume. A label can be provided with the format key=value. To provide a list of labels, key=value pairs must be seperated by commas(,) e.g. --labels key=value,foo=bar. (default [])
31+
--labels stringToString Labels are key-value string pairs which can be attached to a volume. A label can be provided with the format key=value. To provide a list of labels, key=value pairs must be separated by commas(,) e.g. --labels key=value,foo=bar. (default [])
3232
-n, --name string Volume name
3333
```
3434

internal/cmd/beta/volume/create/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ func configureFlags(cmd *cobra.Command) {
126126
cmd.Flags().String(availabilityZoneFlag, "", "Availability zone")
127127
cmd.Flags().StringP(nameFlag, "n", "", "Volume name")
128128
cmd.Flags().String(descriptionFlag, "", "Volume description")
129-
cmd.Flags().StringToString(labelFlag, nil, "Labels are key-value string pairs which can be attached to a volume. A label can be provided with the format key=value. To provide a list of labels, key=value pairs must be seperated by commas(,) e.g. --labels key=value,foo=bar.")
129+
cmd.Flags().StringToString(labelFlag, nil, "Labels are key-value string pairs which can be attached to a volume. A label can be provided with the format key=value. To provide a list of labels, key=value pairs must be separated by commas(,) e.g. --labels key=value,foo=bar.")
130130
cmd.Flags().String(performanceClassFlag, "", "Performance class")
131131
cmd.Flags().Int64(sizeFlag, 0, "Volume size (GB). Either 'size' or the 'source-id' and 'source-type' flags must be given")
132132
cmd.Flags().String(sourceIdFlag, "", "ID of the source object of volume. Either 'size' or the 'source-id' and 'source-type' flags must be given")

internal/cmd/beta/volume/update/update.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func NewCmd(p *print.Printer) *cobra.Command {
100100
func configureFlags(cmd *cobra.Command) {
101101
cmd.Flags().StringP(nameFlag, "n", "", "Volume name")
102102
cmd.Flags().String(descriptionFlag, "", "Volume description")
103-
cmd.Flags().StringToString(labelFlag, nil, "Labels are key-value string pairs which can be attached to a volume. A label can be provided with the format key=value. To provide a list of labels, key=value pairs must be seperated by commas(,) e.g. --labels key=value,foo=bar.")
103+
cmd.Flags().StringToString(labelFlag, nil, "Labels are key-value string pairs which can be attached to a volume. A label can be provided with the format key=value. To provide a list of labels, key=value pairs must be separated by commas(,) e.g. --labels key=value,foo=bar.")
104104
}
105105

106106
func parseInput(p *print.Printer, cmd *cobra.Command, inputArgs []string) (*inputModel, error) {

0 commit comments

Comments
 (0)