Skip to content
This repository has been archived by the owner on May 30, 2023. It is now read-only.

Commit

Permalink
fix typo in deprecation text
Browse files Browse the repository at this point in the history
Signed-off-by: Klaus Kämpf <kkaempf@suse.de>
  • Loading branch information
kkaempf authored and davidcassany committed Apr 11, 2023
1 parent b49cc42 commit d1f987d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/build-disk.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func NewBuildDisk(root *cobra.Command, addCheckRoot bool) *cobra.Command {
Use: "build-disk",
Short: "Build a raw recovery image",
Args: cobra.NoArgs,
Deprecated: "it and can be changed or removed without a major version bump",
Deprecated: "it can be changed or removed without a major version bump",
PreRunE: func(cmd *cobra.Command, args []string) error {
if addCheckRoot {
return CheckRoot()
Expand Down
2 changes: 1 addition & 1 deletion cmd/convert-disk.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func NewConvertDisk(root *cobra.Command, addCheckRoot bool) *cobra.Command {
Use: "convert-disk RAW_DISK",
Short: fmt.Sprintf("converts between a raw disk and a cloud operator disk image (%s)", strings.Join(outputAllowed, ",")),
Args: cobra.ExactArgs(1),
Deprecated: "it and can be changed or removed without a major version bump",
Deprecated: "it can be changed or removed without a major version bump",
PreRunE: func(cmd *cobra.Command, args []string) error {
if addCheckRoot {
return CheckRoot()
Expand Down

0 comments on commit d1f987d

Please sign in to comment.