Skip to content

Commit 7a60388

Browse files
committed
fix typo
Signed-off-by: Mike Interlandi <[email protected]>
1 parent a457d9c commit 7a60388

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cmd/nerdctl/namespace/namespace_update.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ import (
2626
)
2727

2828
func newNamespacelabelUpdateCommand() *cobra.Command {
29-
namespaceLableCommand := &cobra.Command{
29+
namespaceLabelCommand := &cobra.Command{
3030
Use: "update [flags] NAMESPACE",
3131
Short: "Update labels for a namespace",
3232
RunE: labelUpdateAction,
3333
Args: cobra.MinimumNArgs(1),
3434
SilenceUsage: true,
3535
SilenceErrors: true,
3636
}
37-
namespaceLableCommand.Flags().StringArrayP("label", "l", nil, "Set labels for a namespace")
38-
return namespaceLableCommand
37+
namespaceLabelCommand.Flags().StringArrayP("label", "l", nil, "Set labels for a namespace")
38+
return namespaceLabelCommand
3939
}
4040

4141
func processNamespaceUpdateCommandOption(cmd *cobra.Command) (types.NamespaceUpdateOptions, error) {

0 commit comments

Comments
 (0)